From d598885e8db128e716b229b6c579277dd2496aa9 Mon Sep 17 00:00:00 2001 From: akr Date: Sat, 24 Jun 2006 14:52:59 +0000 Subject: * eval.c (rb_eval): use rb_ary_new2 instead of rb_ary_new4 to avoid GC problem. (rb_yield_values): use rb_ary_new2 instead of rb_ary_new4. * array.c (rb_ary_new4): don't set len as n. make it safe with GC. [ruby-dev:28826] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10377 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 16f87eec0..3c81be08a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +Sat Jun 24 23:37:41 2006 Tanaka Akira + + * eval.c (rb_eval): use rb_ary_new2 instead of rb_ary_new4 to avoid + GC problem. + (rb_yield_values): use rb_ary_new2 instead of rb_ary_new4. + + * array.c (rb_ary_new4): don't set len as n. make it safe with GC. + + [ruby-dev:28826] + Fri Jun 23 23:35:32 2006 Tanaka Akira * ruby.h, lib/drb/drb.rb, lib/drb/invokemethod.rb: remove Values class. @@ -266,7 +276,7 @@ Sat Jun 10 15:12:29 2006 NAKAMURA Usaku Sat Jun 10 10:13:13 2006 NAKAMURA Usaku - * lib/getoptlong.rb (GetoptLong#set_options): recieve arguments + * lib/getoptlong.rb (GetoptLong#set_options): receive arguments as Array. * lib/irb/slex.rb: use Proc#yield. @@ -303,7 +313,7 @@ Sat Jun 10 06:53:22 2006 NAKAMURA Usaku * eval.c (CALLARGS): remove last semicolon. C90 compiler doesn't allow any lines (even if they're empty) within variable - declaretions. + declarations. Fri Jun 9 09:56:32 2006 Yukihiro Matsumoto @@ -626,7 +636,7 @@ Sat May 13 16:14:05 2006 Tanaka Akira * lib/pp.rb (PP.mcall): new method. (Struct#pretty_print): call Kernel#class and Struct#members even if - overriden. + overridden. (Struct#pretty_print_cycle): ditto. [ruby-core:7865] -- cgit