* object.c (rb_cstr_to_dbl): "9_e8" should consider "_e8" as

trailing garbage so that it should return 9.0.  [ruby-dev:29088]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10582 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2006-07-21 14:53:11 +00:00
Родитель 252d273832
Коммит 7265bd401d
2 изменённых файлов: 8 добавлений и 3 удалений

Просмотреть файл

@ -3,6 +3,11 @@ Fri Jul 21 21:21:08 2006 Nobuyoshi Nakada <nobu@ruby-lang.org>
* eval.c (rb_call0): include funcalled methods in caller list.
fixed: [ruby-core:08290]
Fri Jul 21 17:52:24 2006 Yukihiro Matsumoto <matz@ruby-lang.org>
* object.c (rb_cstr_to_dbl): "9_e8" should consider "_e8" as
trailing garbage so that it should return 9.0. [ruby-dev:29088]
Fri Jul 21 12:11:00 2006 Nobuyoshi Nakada <nobu@ruby-lang.org>
* ext/extmk.rb, lib/mkmf.rb (with_destdir): remove drive letter before

Просмотреть файл

@ -2071,10 +2071,10 @@ rb_cstr_to_dbl(const char *p, int badcheck)
/* remove underscores between digits */
if (n == buf || !ISDIGIT(n[-1])) goto bad;
while (*++p == '_');
if (badcheck) {
if (!ISDIGIT(*p)) goto bad;
if (!ISDIGIT(*p)) {
if (badcheck) goto bad;
break;
}
continue;
}
*n++ = *p++;
}