Skip to content

Commit

Permalink
Fix "bool|bool" instead of "bool|BOOL" in script lexer.
Browse files Browse the repository at this point in the history
(Broke in a72c41a.)
  • Loading branch information
Cyp committed Mar 15, 2011
1 parent 7e571f5 commit 8ba7c62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/script/script_lexer.l
Expand Up @@ -498,7 +498,7 @@ pause return PAUSE;
/* Match type keywords */
void|VOID { scr_lval.tval = VAL_VOID; return _VOID; }
string|STRING { scr_lval.tval = VAL_STRING; return TYPE; }
bool|bool { scr_lval.tval = VAL_BOOL; return TYPE; }
bool|BOOL { scr_lval.tval = VAL_BOOL; return TYPE; }
int|INT { scr_lval.tval = VAL_INT; return TYPE; }
float|FLOAT { scr_lval.tval = VAL_FLOAT; return TYPE; }

Expand Down

0 comments on commit 8ba7c62

Please sign in to comment.