* ch-exp.y: Fix thinko that broke parsing of FALSE.
This commit is contained in:
parent
39cb3d0488
commit
c9a9bf776c
1 changed files with 1 additions and 1 deletions
|
@ -1901,7 +1901,7 @@ yylex ()
|
|||
yylval.ulval = 1;
|
||||
return (BOOLEAN_LITERAL);
|
||||
}
|
||||
if (STREQ (lexptr, "false"))
|
||||
if (STREQ (simplename, "false"))
|
||||
{
|
||||
yylval.ulval = 0;
|
||||
return (BOOLEAN_LITERAL);
|
||||
|
|
Loading…
Add table
Reference in a new issue