Fix "bool" and "bool" instead of "bool" and "BOOL" in scriptvals lexer, too.

(Broke in a72c41aeec0136c86007739a97ccc9ed508c0283.)
master
Cyp 2011-03-15 21:47:59 +01:00
parent 59309f5e59
commit 564c5a4ee8
1 changed files with 1 additions and 1 deletions

View File

@ -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;