From cb87b084cee0e8b9ed57d1573ec09210b7d9a26d Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Tue, 9 May 2006 15:58:16 +0000 Subject: [PATCH] *** empty log message *** --- ase/awk/run.c | 3 +-- ase/awk/tree.c | 4 ++-- ase/test/awk/t7.awk | 1 + 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ase/awk/run.c b/ase/awk/run.c index 5da41115..bf4ef24b 100644 --- a/ase/awk/run.c +++ b/ase/awk/run.c @@ -1,5 +1,5 @@ /* - * $Id: run.c,v 1.89 2006-05-09 15:21:26 bacon Exp $ + * $Id: run.c,v 1.90 2006-05-09 15:58:16 bacon Exp $ */ #include @@ -466,7 +466,6 @@ xp_printf (XP_T("**** line [%s]\n"), XP_STR_BUF(&run->input.line)); /* for each block { run it } * TODO: handle according if next and nextfile has been called */ -/* TODO */ if (__run_pattern_block_chain (run, run->tree->chain) == -1) { /* don't care about the result of input close */ diff --git a/ase/awk/tree.c b/ase/awk/tree.c index 66194617..990e0f78 100644 --- a/ase/awk/tree.c +++ b/ase/awk/tree.c @@ -1,5 +1,5 @@ /* - * $Id: tree.c,v 1.48 2006-05-07 17:45:08 bacon Exp $ + * $Id: tree.c,v 1.49 2006-05-09 15:58:16 bacon Exp $ */ #include @@ -520,7 +520,7 @@ void xp_awk_prnptnpt (xp_awk_nde_t* tree) while (nde != XP_NULL) { - __print_expression (tree); + __print_expression (nde); if (nde->next == XP_NULL) break; xp_printf (XP_T(",")); diff --git a/ase/test/awk/t7.awk b/ase/test/awk/t7.awk index 1e1cf280..7f88630a 100644 --- a/ase/test/awk/t7.awk +++ b/ase/test/awk/t7.awk @@ -1,4 +1,5 @@ BEGIN { i = 20; j = 0; } { i++; } i % 2 { j++; } +/*"1","2" || "Yes" {}*/ /*END { i = i + 1234; j = j + 1234; }*/