From 59fb892558bfb91f3468abb659dc56c64b0e46b7 Mon Sep 17 00:00:00 2001 From: matz Date: Mon, 12 Aug 2002 07:39:12 +0000 Subject: * bignum.c (rb_big_cmp): use dbl2big() for Floats, instead of big2dbl(). * bignum.c (Init_Bignum): rb_big_zero_p() removed. There may be Bignum zero. * eval.c (rb_call0): new argument added for original method name. preserve original method name in frame->orig_func. * eval.c (is_defined): use frame->orig_func, not last_func. * eval.c (rb_eval): ditto. * eval.c (method_call): supply data->oid also to rb_call0(). * object.c (rb_class_allocate_instance): call rb_obj_alloc() when called from alias, thus invoke original "allocate". * eval.c (remove_method): removing allocate from classes should cause NameError. * hash.c (rb_hash_equal): should check default values. * ext/socket/socket.c (s_recvfrom): update RSTRING len. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2702 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 493053832..8b415da3e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -10,6 +10,14 @@ Sun Aug 11 09:34:07 2002 Nobuyoshi Nakada * marshal.c (r_object): register TYPE_BIGNUM regardless real type. +Sat Aug 10 23:47:16 2002 Yukihiro Matsumoto + + * bignum.c (rb_big_cmp): use dbl2big() for Floats, instead of + big2dbl(). + + * bignum.c (Init_Bignum): rb_big_zero_p() removed. There may be + Bignum zero. + Fri Aug 9 13:31:40 2002 WATANABE Hirofumi * ext/Win32API/extconf.rb: check existence of . @@ -20,6 +28,23 @@ Thu Aug 8 09:37:02 2002 Nobuyoshi Nakada * lib/optparse.rb (String): ditto. +Thu Aug 8 00:45:15 2002 Yukihiro Matsumoto + + * eval.c (rb_call0): new argument added for original method name. + preserve original method name in frame->orig_func. + + * eval.c (is_defined): use frame->orig_func, not last_func. + + * eval.c (rb_eval): ditto. + + * eval.c (method_call): supply data->oid also to rb_call0(). + + * object.c (rb_class_allocate_instance): call rb_obj_alloc() when + called from alias, thus invoke original "allocate". + + * eval.c (remove_method): removing allocate from classes should + cause NameError. + Wed Aug 7 22:12:54 2002 Nobuyoshi Nakada * lib/optparse.rb (OptionParser::Completion::convert): returned @@ -35,6 +60,10 @@ Wed Aug 7 22:12:54 2002 Nobuyoshi Nakada * lib/optparse/uri.rb: require standard uri module. thanks to Minero Aoki. +Wed Aug 7 09:51:54 2002 Yukihiro Matsumoto + + * hash.c (rb_hash_equal): should check default values. + Wed Aug 7 08:44:32 2002 Minero Aoki * ext/racc/cparse/cparse.c: reduce goto. @@ -65,6 +94,10 @@ Fri Aug 2 09:12:32 2002 Minero Aoki * ext/strscan/strscan.c: follow allocation framework. +Fri Aug 2 01:21:52 2002 Yukihiro Matsumoto + + * ext/socket/socket.c (s_recvfrom): update RSTRING len. + Thu Aug 1 17:47:15 2002 Tachino Nobuhiro * parse.y (tokadd_string): ignore backslashed spaces in %w. -- cgit