aboutsummaryrefslogtreecommitdiffstats
path: root/parse.y
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-02 06:51:53 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-08-02 06:51:53 +0000
commitb951952b40c28655dfc973c960ab594f017d269f (patch)
tree051c5e82fd12337a37c3031cbfc3222dc8e07e84 /parse.y
parent4de6475690f685e9003df1d53bb099340186db8a (diff)
downloadruby-b951952b40c28655dfc973c960ab594f017d269f.tar.gz
* parse.y (yylex): 8 and 9 in octal integer should cause compile
error. [ruby-dev:35729] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18318 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y4
1 files changed, 3 insertions, 1 deletions
diff --git a/parse.y b/parse.y
index 6abc2da09e..546c08b48a 100644
--- a/parse.y
+++ b/parse.y
@@ -6656,7 +6656,8 @@ parser_yylex(struct parser_params *parser)
nondigit = c;
continue;
}
- if (c < '0' || c > '7') break;
+ if (c < '0' || c > '9') break;
+ if (c > '7') goto invalid_octal;
nondigit = 0;
tokadd(c);
} while ((c = nextc()) != -1);
@@ -6673,6 +6674,7 @@ parser_yylex(struct parser_params *parser)
}
}
if (c > '7' && c <= '9') {
+ invalid_octal:
yyerror("Invalid octal digit");
}
else if (c == '.' || c == 'e' || c == 'E') {