Index: trunk/tools/justMessages/justMessages.l |
— | — | @@ -74,7 +74,7 @@ |
75 | 75 | |
76 | 76 | {WHITESPACE}|{NEWLINE} ; |
77 | 77 | <ERROR>.* { fprintf(stderr, "near %s\n", yytext); ERRORLEVEL(5); return 1; } |
78 | | -. { fprintf(stderr, "%s: Error in state %d ", filename, YY_START); BEGIN(ERROR); unput(yytext[0]); if (0) goto find_rule; } |
| 78 | +. { fprintf(stderr, "%s: Error in state %d ", filename, YY_START); BEGIN(ERROR); unput(yytext[0]); }} |
79 | 79 | |
80 | 80 | %% |
81 | 81 | |