From d08d661dc03105ff58b6fd4960cb078630dc4169 Mon Sep 17 00:00:00 2001 From: matz Date: Wed, 6 Aug 2003 21:50:06 +0000 Subject: * eval.c (rb_call0): update ruby_class as well as ruby_cref. (ruby-bugs-ja PR#540) * eval.c (rb_yield_0): remove ruby_frame->cbase and unify to ruby_cref. [ruby-talk:78141] * eval.c: initialize /* OK */ variables by Qnil to stop warnings. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4346 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 1e2ba50c1..6692b41fd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +Thu Aug 7 06:46:06 2003 Yukihiro Matsumoto + + * eval.c (rb_call0): update ruby_class as well as ruby_cref. + (ruby-bugs-ja PR#540) + +Thu Aug 7 04:52:50 2003 Yukihiro Matsumoto + + * eval.c (rb_yield_0): remove ruby_frame->cbase and unify to + ruby_cref. [ruby-talk:78141] + Thu Aug 7 04:19:15 2003 Akinori MUSHA * gc.c: FreeBSD/ia64's mcontext_t is a bit different from that of @@ -39,10 +49,45 @@ Wed Aug 6 17:28:10 2003 Nobuyoshi Nakada * ext/digest/sha1/extconf.rb: have_library already appends library name. +Wed Aug 6 17:23:57 2003 Yukihiro Matsumoto + + * eval.c: initialize /* OK */ variables by Qnil to stop warnings. + Wed Aug 6 04:58:32 2003 NAKAMURA Usaku * ext/Setup*: add io/wait and openssl. +Wed Aug 6 01:13:38 2003 Yukihiro Matsumoto + + * eval.c (rb_f_autoload): use ruby_cbase instead of ruby_class. + + * eval.c (rb_f_autoload_p): ditto. + + * class.c (rb_mod_init_copy): no longer implements independent + clone and dup methods. override "initialize_copy" instead. + [ruby-core:01352] + + * object.c (rb_class_s_alloc): define Class allocation function. + this makes Classes to follow clone framework that uses + initialize_copy. + + * object.c (rb_class_initialize): separate instantiation and + initialization. + + * object.c (rb_obj_alloc): prohibit instantiation from + uninitialized class. + + * object.c (rb_class_superclass): check uninitialized class. + + * array.c (rb_ary_fill): wrong index processing with block. this + fix was done by Koji Arai [ruby-list:38029] + + * marshal.c (w_object): should preserve generic ivar for nil, + true, false, symbols, and fixnums. + + * marshal.c (w_uclass): base_klass check should be done after + rb_class_real(). + Wed Aug 6 01:18:50 2003 Minero Aoki * lib/net/http.rb: update document. @@ -51,6 +96,11 @@ Wed Aug 6 01:18:50 2003 Minero Aoki * lib/net/protocol.rb: ditto. +Wed Aug 6 00:48:37 2003 Koji Arai + + * marshal.c (w_object): should recommend marshal_dump rather than + _dump_data. + Tue Aug 5 17:58:57 2003 WATANABE Hirofumi * lib/fileutils.rb (install): should preserve timestamp only. -- cgit