* ch-exp.y: Fix thinko that broke parsing of FALSE.

This commit is contained in:
Per Bothner 1993-04-14 21:04:50 +00:00
parent 39cb3d0488
commit c9a9bf776c
1 changed files with 1 additions and 1 deletions

View File

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