diff options
author | Eugene Sandulenko | 2017-01-10 11:06:42 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2017-01-10 11:06:42 +0100 |
commit | 66624ef9274248afe640ec16d80de84d479fff18 (patch) | |
tree | 95c381c1926cac2f75ef2adc666388df3994a0e5 /engines/director/lingo/lingo-gr.h | |
parent | 5df6cdca6ee6101839bfbdb9da53b43a65dd6029 (diff) | |
download | scummvm-rg350-66624ef9274248afe640ec16d80de84d479fff18.tar.gz scummvm-rg350-66624ef9274248afe640ec16d80de84d479fff18.tar.bz2 scummvm-rg350-66624ef9274248afe640ec16d80de84d479fff18.zip |
DIRECTOR: Smarter checks for 'end' clause in grammar/lexer
Diffstat (limited to 'engines/director/lingo/lingo-gr.h')
-rw-r--r-- | engines/director/lingo/lingo-gr.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/engines/director/lingo/lingo-gr.h b/engines/director/lingo/lingo-gr.h index 27cfd6e9b3..7ca6875c97 100644 --- a/engines/director/lingo/lingo-gr.h +++ b/engines/director/lingo/lingo-gr.h @@ -60,10 +60,10 @@ STRING = 276, HANDLER = 277, SYMBOL = 278, - tDOWN = 279, - tELSE = 280, - tNLELSIF = 281, - tEND = 282, + ENDCLAUSE = 279, + tDOWN = 280, + tELSE = 281, + tNLELSIF = 282, tEXIT = 283, tFRAME = 284, tGLOBAL = 285, @@ -140,10 +140,10 @@ #define STRING 276 #define HANDLER 277 #define SYMBOL 278 -#define tDOWN 279 -#define tELSE 280 -#define tNLELSIF 281 -#define tEND 282 +#define ENDCLAUSE 279 +#define tDOWN 280 +#define tELSE 281 +#define tNLELSIF 282 #define tEXIT 283 #define tFRAME 284 #define tGLOBAL 285 @@ -202,7 +202,7 @@ #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED typedef union YYSTYPE -#line 69 "engines/director/lingo/lingo-gr.y" +#line 79 "engines/director/lingo/lingo-gr.y" { Common::String *s; int i; |