From: Per Bothner Date: Wed, 14 Apr 1993 21:04:50 +0000 (+0000) Subject: * ch-exp.y: Fix thinko that broke parsing of FALSE. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c9a9bf776cc9a9af320b7371006b430e39ba1182;p=binutils-gdb.git * ch-exp.y: Fix thinko that broke parsing of FALSE. --- diff --git a/gdb/ch-exp.y b/gdb/ch-exp.y index 2ce7286c8cd..9d961bd1fb1 100644 --- a/gdb/ch-exp.y +++ b/gdb/ch-exp.y @@ -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);