Doxyfile file description. Indentation. No change of code.
[yaz-moved-to-github.git] / src / cclptree.c
index 1c36a03..920184a 100644 (file)
  * USE OR PERFORMANCE OF THIS SOFTWARE.
  *
  */
+
+/** 
+ * \file cclptree.c
+ * \brief Implements CCL parse tree printing
+ *
+ * This source file implements functions to parse and print
+ * a CCL node tree (as a result of parsing).
+ */
+
 /* CCL print rpn tree - infix notation
  * Europagate, 1995
  *
- * $Id: cclptree.c,v 1.1 2003-10-27 12:21:30 adam Exp $
+ * $Id: cclptree.c,v 1.3 2004-10-15 00:18:59 adam Exp $
  *
  * Old Europagate Log:
  *
@@ -93,7 +102,7 @@ void ccl_pr_tree_as_qrpn(struct ccl_rpn_node *rpn, FILE *fd_out, int indent)
             for (attr = rpn->u.t.attr_list; attr; attr = attr->next)
                        {
                                if (attr->set)
-                                       fprintf(fd_out, "@attr %s", attr->set);
+                                       fprintf(fd_out, "@attr %s ", attr->set);
                                else
                                        fprintf(fd_out, "@attr ");
                                switch(attr->kind)
@@ -265,7 +274,7 @@ void ccl_pquery (WRBUF w, struct ccl_rpn_node *p)
 
 /*
  * Local variables:
- * tab-width: 4
+ * tab-width: 8
  * c-basic-offset: 4
  * End:
  */