projects
/
binutils-gdb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
39cb3d0
)
* ch-exp.y: Fix thinko that broke parsing of FALSE.
author
Per Bothner
<per@bothner.com>
Wed, 14 Apr 1993 21:04:50 +0000
(21:04 +0000)
committer
Per Bothner
<per@bothner.com>
Wed, 14 Apr 1993 21:04:50 +0000
(21:04 +0000)
gdb/ch-exp.y
patch
|
blob
|
history
diff --git
a/gdb/ch-exp.y
b/gdb/ch-exp.y
index 2ce7286c8cdc931b5dda72146da526b3ac8e22b9..9d961bd1fb18b13537bee986cf0d0a79fbafc030 100644
(file)
--- 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);