From 5fda33b1800ca4ddc25a462a36e46e4551be389a Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Thu, 6 Dec 2007 00:25:36 +0000 Subject: [PATCH] --- ase/awk/parse.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ase/awk/parse.c b/ase/awk/parse.c index c6e739f1..328716ff 100644 --- a/ase/awk/parse.c +++ b/ase/awk/parse.c @@ -2569,6 +2569,8 @@ static ase_awk_nde_t* parse_increment (ase_awk_t* awk, ase_size_t line) * the primary should be treated specially. * for example, "abc" ++ 10 => "abc" . ++10 */ + /* TOOD: probably left->type == ASE_AWK_NDE_POS should + * be inclued to handle $i++, $i--. */ if (!is_var(left)) return left; }