mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* parse.y (parser_yylex): fix token even after trailing under score.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25382 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
eccb700286
commit
859a985715
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
Sat Oct 17 16:34:27 2009 Tanaka Akira <akr@fsij.org>
|
||||
|
||||
* parse.y (parser_yylex): fix token even after trailing under score.
|
||||
|
||||
Sat Oct 17 11:27:44 2009 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||
|
||||
* vm_method.c (basic_obj_respond_to): call #respond_to_missing?
|
||||
|
|
2
parse.y
2
parse.y
|
@ -7062,13 +7062,13 @@ parser_yylex(struct parser_params *parser)
|
|||
|
||||
decode_num:
|
||||
pushback(c);
|
||||
tokfix();
|
||||
if (nondigit) {
|
||||
char tmp[30];
|
||||
trailing_uc:
|
||||
snprintf(tmp, sizeof(tmp), "trailing `%c' in number", nondigit);
|
||||
yyerror(tmp);
|
||||
}
|
||||
tokfix();
|
||||
if (is_float) {
|
||||
double d = strtod(tok(), 0);
|
||||
if (errno == ERANGE) {
|
||||
|
|
Loading…
Reference in a new issue