aboutsummaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-05-23 09:01:19 +0000
committerknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-05-23 09:01:19 +0000
commit7c52f1ed7a25b61d6efda6d4a005ab9c1da541c6 (patch)
tree79f9b5399877a5b591dad091ebce3a918f0e9d6a /ChangeLog
parentefa115e451f3c5f0b354a6a961041614430578f8 (diff)
downloadruby-7c52f1ed7a25b61d6efda6d4a005ab9c1da541c6.tar.gz
* array.c (rb_ary_slice_bang): Be consistent with Array#slice()
and String#slice!(). Just return nil when a negative length or out of boundary index is given instead of raising an exception via internal functions. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@16559 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog7
1 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index b0d1133d95..fcb2ad7c1f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Fri May 23 17:55:11 2008 Akinori MUSHA <knu@iDaemons.org>
+
+ * array.c (rb_ary_slice_bang): Be consistent with Array#slice()
+ and String#slice!(). Just return nil when a negative length or
+ out of boundary index is given instead of raising an exception
+ via internal functions.
+
Fri May 23 16:44:34 2008 Akinori MUSHA <knu@iDaemons.org>
* enumerator.c (Init_Enumerator): Override