https://bugs.winehq.org/show_bug.cgi?id=53678 --- Comment #4 from Jason Millard <jsm174(a)gmail.com> --- I just ran into another script that uses "Case ELSE" without a colon: "Case Else vpmKeyUp = False" Updated CaseClausules as: CaseClausules : /* empty */ { $$ = NULL; } | tCASE tELSE StSep StatementsNl_opt { $$ = new_case_clausule(ctx, NULL, $4, NULL); } | tCASE tELSE StatementsNl_opt { $$ = new_case_clausule(ctx, NULL, $3, NULL); } | tCASE ExpressionList StSep StatementsNl_opt CaseClausules { $$ = new_case_clausule(ctx, $2, $4, $5); } | tCASE ExpressionList StatementsNl_opt CaseClausules { $$ = new_case_clausule(ctx, $2, $3, $4); } -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.