From 3a28abfc3d3ff4b05d3c8c009209e4b7f005eed9 Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 1 Feb 2002 10:23:22 +0000 Subject: * intern.h: prototypes for new functions; rb_cstr_to_inum(), rb_str_to_inum(), rb_cstr_to_dbl(), rb_str_to_dbl() * bignum.c (rb_cstr_to_inum): changed from rb_cstr2inum(), and added argument badcheck to be consistent with parser. [new] * bignum.c (rb_str_to_inum): ditto. * bignum.c (rb_cstr2inum): wapper of rb_cstr_to_inum() now. * bignum.c (rb_str2inum): ditto. * object.c (rb_cstr_to_dbl): float number parser. [new] * object.c (rb_str_to_dbl): ditto. * object.c (rb_Float): use rb_cstr_to_dbl() for strict check. * object.c (rb_Integer): use rb_str_to_inum() for strict check. * string.c (rb_str_to_f): use rb_str_to_dbl() with less check. * string.c (rb_str_to_i): use rb_str_to_inum() with less check. * string.c (rb_str_hex): ditto. * string.c (rb_str_oct): ditto. * sprintf.c (rb_f_sprintf): ditto. * time.c (obj2long): ditto. * parse.y (yylex): use rb_cstr_to_inum() for strict check. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2041 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 100d46cf5..b138cdc72 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,39 @@ +Fri Feb 1 19:10:04 2002 Nobuyoshi Nakada + + * intern.h: prototypes for new functions; rb_cstr_to_inum(), + rb_str_to_inum(), rb_cstr_to_dbl(), rb_str_to_dbl() + + * bignum.c (rb_cstr_to_inum): changed from rb_cstr2inum(), and + added argument badcheck to be consistent with parser. [new] + + * bignum.c (rb_str_to_inum): ditto. + + * bignum.c (rb_cstr2inum): wapper of rb_cstr_to_inum() now. + + * bignum.c (rb_str2inum): ditto. + + * object.c (rb_cstr_to_dbl): float number parser. [new] + + * object.c (rb_str_to_dbl): ditto. + + * object.c (rb_Float): use rb_cstr_to_dbl() for strict check. + + * object.c (rb_Integer): use rb_str_to_inum() for strict check. + + * string.c (rb_str_to_f): use rb_str_to_dbl() with less check. + + * string.c (rb_str_to_i): use rb_str_to_inum() with less check. + + * string.c (rb_str_hex): ditto. + + * string.c (rb_str_oct): ditto. + + * sprintf.c (rb_f_sprintf): ditto. + + * time.c (obj2long): ditto. + + * parse.y (yylex): use rb_cstr_to_inum() for strict check. + Fri Feb 1 17:46:39 2002 Nobuyoshi Nakada * regex.c (mbc_startpos): become macro. -- cgit