From 2827a74cb137001aff4ce440f7e11acd11d91c7b Mon Sep 17 00:00:00 2001 From: Ryan Schmidt Date: Mon, 10 Nov 2008 01:04:47 -0600 Subject: [PATCH] jscript: Fix build with bison 2.4. --- dlls/jscript/parser.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/jscript/parser.y b/dlls/jscript/parser.y index 7a74e467e06..c96f8a3ebed 100644 --- a/dlls/jscript/parser.y +++ b/dlls/jscript/parser.y @@ -317,7 +317,7 @@ StatementList_opt /* ECMA-262 3rd Edition 12.1 */ Block : '{' StatementList '}' { $$ = new_block_statement(ctx, $2); } - | '{' '}' { $$ = new_block_statement(ctx, NULL) } + | '{' '}' { $$ = new_block_statement(ctx, NULL); } /* ECMA-262 3rd Edition 12.2 */ VariableStatement