diff actions.c @ 30:cd979b979610

fixed multiple (un)indentions in read_input; some better comments
author meillo@marmaro.de
date Fri, 22 Feb 2008 14:47:47 +0100
parents f0856c177403
children 4e60d96265f0
line wrap: on
line diff
--- a/actions.c	Fri Feb 22 13:55:57 2008 +0100
+++ b/actions.c	Fri Feb 22 14:47:47 2008 +0100
@@ -93,7 +93,7 @@
 	unsigned char i;
 	tp = node->down;
 	for (i = 0; i < node->value; i++) {
-		/* deep copy */
+		/* FIXME deep copy */
 		last = insertLast(node, newNode(tp->name, tp->value));
 		if (tp->down != NULL) {
 			last->down = newNode(tp->down->name, tp->down->value);