From 6cfee9c61cc16b3087ab0e0644a3e6340bc50f6e Mon Sep 17 00:00:00 2001 From: ocean Date: Tue, 15 Nov 2005 07:38:38 +0000 Subject: * array.c (rb_ary_fill): previous commit disabled this usage: a = [0,1,2,3,4,5,6,7,8,9] a.fill {|i| a[i] * 10} #=> [nil, nil, ...., nil] previous commit has advantange for early garbage collection, but potensially would break some script. so I reverted behavior. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9543 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index d96d72ea9..0e88963e9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +Tue Nov 15 16:36:03 2005 Hirokazu Yamamoto + + * array.c (rb_ary_fill): previous commit disabled this usage: + + a = [0,1,2,3,4,5,6,7,8,9] + a.fill {|i| a[i] * 10} #=> [nil, nil, ...., nil] + + previous commit has advantange for early garbage collection, but + potensially would break some script. so I reverted behavior. + Tue Nov 15 16:15:23 2005 Yukihiro Matsumoto * file.c (file_load_ok): use eaccess() instead of actually opening -- cgit