Module: wine Branch: master Commit: 2827a74cb137001aff4ce440f7e11acd11d91c7b URL: http://source.winehq.org/git/wine.git/?a=commit;h=2827a74cb137001aff4ce440f7...
Author: Ryan Schmidt wine-2008d@ryandesign.com Date: Mon Nov 10 01:04:47 2008 -0600
jscript: Fix build with bison 2.4.
---
dlls/jscript/parser.y | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/jscript/parser.y b/dlls/jscript/parser.y index 7a74e46..c96f8a3 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