Fix "bool" and "bool" instead of "bool" and "BOOL" in scriptvals lexer, too.
(Broke in a72c41aeec0136c86007739a97ccc9ed508c0283.)master
parent
59309f5e59
commit
564c5a4ee8
|
@ -106,7 +106,7 @@ extern void scrv_set_extra(YY_EXTRA_TYPE user_defined);
|
|||
int { yylval->tval = VAL_INT; return TYPE; }
|
||||
INT { yylval->tval = VAL_INT; return TYPE; }
|
||||
bool { yylval->tval = VAL_BOOL; return TYPE; }
|
||||
bool { yylval->tval = VAL_BOOL; return TYPE; }
|
||||
BOOL { yylval->tval = VAL_BOOL; return TYPE; }
|
||||
script return SCRIPT;
|
||||
store return STORE;
|
||||
run return RUN;
|
||||
|
|
Loading…
Reference in New Issue