aboutsummaryrefslogtreecommitdiffstats
path: root/parse.y
diff options
context:
space:
mode:
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/parse.y b/parse.y
index a044a93408..10322e889c 100644
--- a/parse.y
+++ b/parse.y
@@ -7007,7 +7007,7 @@ parser_yylex(struct parser_params *parser)
}
else {
int c0 = nextc();
- if (c == -1 || !ISDIGIT(c0)) {
+ if (c0 == -1 || !ISDIGIT(c0)) {
pushback(c0);
goto decode_num;
}