Index: /trunk/Ohana/src/opihi/cmd.basic/quit.c
===================================================================
--- /trunk/Ohana/src/opihi/cmd.basic/quit.c	(revision 3260)
+++ /trunk/Ohana/src/opihi/cmd.basic/quit.c	(revision 3261)
@@ -5,7 +5,5 @@
   int state;
 
-  fprintf (stderr, "Goodbye!\n");
   cleanup ();
-  fprintf (stderr, "Cleanup done!\n");
 
   state = 0;
Index: /trunk/Ohana/src/opihi/cmd.data/kern.c
===================================================================
--- /trunk/Ohana/src/opihi/cmd.data/kern.c	(revision 3260)
+++ /trunk/Ohana/src/opihi/cmd.data/kern.c	(revision 3261)
@@ -1,4 +1,5 @@
 # include "data.h"
 
+/** need to allow larger kernels (5x5, 7x7, etc) **/
 int kern (int argc, char **argv) {
 
@@ -40,4 +41,8 @@
     /* file */
     f = fopen (argv[2], "r");
+    if (f == NULL) {
+      fprintf (stderr, "file not found: %s\n", argv[2]);
+      return (FALSE);
+    }
     for (i = 0; i < 3; i++) {
       status = scan_line (f, line);
Index: /trunk/Ohana/src/opihi/doc/Change.log
===================================================================
--- /trunk/Ohana/src/opihi/doc/Change.log	(revision 3260)
+++ /trunk/Ohana/src/opihi/doc/Change.log	(revision 3261)
@@ -1,10 +1,11 @@
 
-2004.12.10:
+opihi-2-1:
+  major reorg of imfit / added imfit functions
+  cleaned up get_argument calls so -Wall does not give errors
+  moved the 'elixir' command to dvo
+  tag added only to elixir implementations (mana + dvo)
+  dimm - need to coordinate with Olivier and Bernt
+  dvo2, pcontrol, pclient, sched - all under development
 
-  fixed problem in lib.data/PlotVectors.c and lib.data/graphtools.c
-  that broke plotting for data with very large or small exponents (|x|
-  < 1e-12, |x| > 1e12).  also fixed cmd.data/vstats.c with same
-  problem.
-	
 2004.12.23
 
@@ -23,3 +24,11 @@
   stack has strings which cannot be resolved as a vector or matrix.  
 
+2004.12.10:
 
+  fixed problem in lib.data/PlotVectors.c and lib.data/graphtools.c
+  that broke plotting for data with very large or small exponents (|x|
+  < 1e-12, |x| > 1e12).  also fixed cmd.data/vstats.c with same
+  problem.
+	
+opihi-2-0:
+  import to CVS 2004.12.03
Index: /trunk/Ohana/src/opihi/scripts/tag-elixir
===================================================================
--- /trunk/Ohana/src/opihi/scripts/tag-elixir	(revision 3261)
+++ /trunk/Ohana/src/opihi/scripts/tag-elixir	(revision 3261)
@@ -0,0 +1,31 @@
+#!/bin/csh -f
+
+# this just organizes the tagging of the elixir components
+
+if ($#argv != 2) then
+  echo "USAGE: tag-elixir (TAG)"
+  exit 2
+endif
+
+cvs tag $1 Makefile
+cvs tag $1 bin/
+cvs tag $1 cmd.astro/
+cvs tag $1 cmd.basic/
+cvs tag $1 cmd.data/
+cvs tag $1 doc/
+cvs tag $1 dvo/
+cvs tag $1 help/
+cvs tag $1 include/
+cvs tag $1 lib/
+cvs tag $1 lib.data/
+cvs tag $1 lib.shell/
+cvs tag $1 mana/
+cvs tag $1 scripts/
+
+# don't place tag on these implementations
+# cvs tag $1 dimm/
+# cvs tag $1 dvo2/
+# cvs tag $1 old/
+# cvs tag $1 pclient/
+# cvs tag $1 pcontrol/
+# cvs tag $1 sched/
