* ch-exp.y: Fix thinko that broke parsing of FALSE.
authorPer Bothner <per@bothner.com>
Wed, 14 Apr 1993 21:04:50 +0000 (21:04 +0000)
committerPer Bothner <per@bothner.com>
Wed, 14 Apr 1993 21:04:50 +0000 (21:04 +0000)
gdb/ch-exp.y

index 2ce7286c8cdc931b5dda72146da526b3ac8e22b9..9d961bd1fb18b13537bee986cf0d0a79fbafc030 100644 (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);