From 0b129be5ed4bae2c27b2f8d2119cc3dc37568bba Mon Sep 17 00:00:00 2001 From: Matthias Braun Date: Sat, 7 Mar 2009 23:32:22 +0000 Subject: [PATCH] fix [r25624] --- parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parser.c b/parser.c index 5a444f3..e4b159e 100644 --- a/parser.c +++ b/parser.c @@ -9791,7 +9791,7 @@ static statement_t *parse_for(void) size_t const top = environment_top(); scope_t *old_scope = scope_push(&statement->fors.scope); - bool old_gcc_extension; + bool old_gcc_extension = in_gcc_extension; while (token.type == T___extension__) { next_token(); in_gcc_extension = true; -- 2.20.1