Updated current version number for library.
[yaz-moved-to-github.git] / ccl / cclsh.c
index 5f1bb83..d2aaf46 100644 (file)
  * Europagate 1995
  *
  * $Log: cclsh.c,v $
- * Revision 1.4  1999-03-31 11:15:37  adam
+ * Revision 1.6  2000-01-31 13:15:21  adam
+ * Removed uses of assert(3). Cleanup of ODR. CCL parser update so
+ * that some characters are not surrounded by spaces in resulting term.
+ * ILL-code updates.
+ *
+ * Revision 1.5  1999/12/16 23:36:19  adam
+ * Implemented ILL protocol. Minor updates ASN.1 compiler.
+ *
+ * Revision 1.4  1999/03/31 11:15:37  adam
  * Fixed memory leaks in ccl_find_str and ccl_qual_rm.
  *
  * Revision 1.3  1997/04/30 08:52:07  quinn
 
 #include <stdio.h>
 #include <stdlib.h>
-#include <assert.h>
 
-#include <ccl.h>
+#include <yaz/ccl.h>
 
 static int debug = 0;
 static char *prog;
@@ -171,8 +178,7 @@ int main (int argc, char **argv)
             }
             else
             {
-                assert (rpn);
-               if (i == 0)
+               if (rpn && i == 0)
                {
                    ccl_pr_tree (rpn, stdout);
                    putchar ('\n');