From 37078b8afca75acf1381f9fcaf6ee22dd4307208 Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Sat, 4 Feb 2006 19:37:40 +0000 Subject: [PATCH] *** empty log message *** --- ase/awk/parse.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ase/awk/parse.c b/ase/awk/parse.c index 1b087673..1f867120 100644 --- a/ase/awk/parse.c +++ b/ase/awk/parse.c @@ -1,5 +1,5 @@ /* - * $Id: parse.c,v 1.43 2006-02-04 19:31:51 bacon Exp $ + * $Id: parse.c,v 1.44 2006-02-04 19:37:40 bacon Exp $ */ #include @@ -591,6 +591,7 @@ static xp_awk_node_t* __parse_block (xp_awk_t* awk, xp_bool_t is_top) block->next = XP_NULL; block->body = head; + /* migrate all local variables to a top-level block */ if (is_top) { block->nlocals = awk->parse.nlocals_max - nlocals; awk->parse.nlocals_max = nlocals;