projects
/
tedtools.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (from parent 1:
5021375
)
Fix comments and remove unneeded fields
author
teodor
<teodor>
Fri, 3 Oct 2008 15:29:51 +0000
(15:29 +0000)
committer
teodor
<teodor>
Fri, 3 Oct 2008 15:29:51 +0000
(15:29 +0000)
template.h
patch
|
blob
|
history
diff --git
a/template.h
b/template.h
index
a2d7e39
..
9061e30
100644
(file)
--- a/
template.h
+++ b/
template.h
@@
-217,8
+217,7
@@
typedef struct TemplateNodeData {
int nargs;
char *functionName;
executeFunctionDesc function;
int nargs;
char *functionName;
executeFunctionDesc function;
- GList *argsNode; /* list of nodes after parsing
- but before compile */
+ GList *argsNode; /* list of arguments nodes */
} expression;
/* ConstNode */
} expression;
/* ConstNode */
@@
-240,8
+239,7
@@
typedef struct TemplateNodeData {
char *varName;
int varNameLength;
TemplateNode bodyNode;
char *varName;
int varNameLength;
TemplateNode bodyNode;
- int counter;
- GList *childrenLoop; /* to reset instance */
+ GList *childrenLoop; /* to reset loop's instance */
GList *listVarValues; /* list of loop variables */
GList *listInstance;
} loop;
GList *listVarValues; /* list of loop variables */
GList *listInstance;
} loop;