From b27393d6caae763ab27b259ca9588aad75758305 Mon Sep 17 00:00:00 2001 From: matz Date: Wed, 28 Feb 2001 06:30:03 +0000 Subject: * string.c (rb_str_delete_bang): delete! should take at least 1 argument. * ruby.c (load_file): add rb_gc() after loading to avoid extraordinary memory growth. * dir.c (rb_glob_helper): "./foo" should match "foo", not "./foo". * eval.c (ev_const_get): retrieve Object's constant if no current class is available (e.g. defining singleton class for Fixnums). * eval.c (ev_const_defined): check Object's constant if no current class is available (e.g. defining singleton class for Fixnums). * time.c (time_timeval): negative time interval shoule not be allowed. * eval.c (proc_call): ignore block to `call' always, despite of being orphan or not. * eval.c (rb_yield_0): should check based on rb_block_given_p() and rb_f_block_given_p(). * configure.in (frame-address): --enable-frame-address to allow __builtin_frame_address() to be used. * eval.c (stack_length): use __builtin_frame_address() based on the macro USE_BUILTIN_FRAME_ADDRESS. * gc.c (rb_gc): ditto. * gc.c (Init_stack): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1223 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index bc8e794d03..5253b5b2d7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,11 +1,46 @@ +Wed Feb 28 11:02:41 2001 Yukihiro Matsumoto + + * string.c (rb_str_delete_bang): delete! should take at least 1 + argument. + + * ruby.c (load_file): add rb_gc() after loading to avoid + extraordinary memory growth. + +Wed Feb 28 05:01:40 2001 Koji Arai + + * dir.c (rb_glob_helper): "./foo" should match "foo", not "./foo". + Tue Feb 27 16:38:15 2001 Yukihiro Matsumoto + * eval.c (ev_const_get): retrieve Object's constant if no current + class is available (e.g. defining singleton class for Fixnums). + + * eval.c (ev_const_defined): check Object's constant if no current + class is available (e.g. defining singleton class for Fixnums). + * time.c (time_timeval): negative time interval shoule not be allowed. * eval.c (proc_call): ignore block to `call' always, despite of being orphan or not. +Wed Feb 27 10:16:32 2001 Nobuyoshi Nakada + + * eval.c (rb_yield_0): should check based on rb_block_given_p() + and rb_f_block_given_p(). + +Tue Feb 27 04:13:45 2001 Nobuyoshi Nakada + + * configure.in (frame-address): --enable-frame-address to allow + __builtin_frame_address() to be used. + + * eval.c (stack_length): use __builtin_frame_address() based on + the macro USE_BUILTIN_FRAME_ADDRESS. + + * gc.c (rb_gc): ditto. + + * gc.c (Init_stack): ditto. + Mon Feb 26 16:20:27 2001 Yukihiro Matsumoto * ruby.c (proc_options): call ruby_show_version() just once. -- cgit v1.2.3