From c85f8f1bad4f2e209e18c5a5c3fe7ab007124aad Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Wed, 25 Jan 2006 04:41:56 +0000 Subject: [PATCH] *** empty log message *** --- ase/awk/parse.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ase/awk/parse.c b/ase/awk/parse.c index 886262c9..e8abe5fe 100644 --- a/ase/awk/parse.c +++ b/ase/awk/parse.c @@ -1,5 +1,5 @@ /* - * $Id: parse.c,v 1.31 2006-01-25 04:27:01 bacon Exp $ + * $Id: parse.c,v 1.32 2006-01-25 04:41:56 bacon Exp $ */ #include @@ -1164,6 +1164,8 @@ static xp_awk_node_t* __parse_for (xp_awk_t* awk) xp_awk_node_t* init, * test, * incr, * body; xp_awk_node_for_t* node; + // TODO: parse for (x in list) ... + if (!MATCH(awk,TOKEN_LPAREN)) PANIC (awk, XP_AWK_ELPAREN); if (__get_token(awk) == -1) return XP_NULL;