summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-06-03 00:02:14 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-06-03 00:02:14 +0000
commit9bbc34ac6c68ed233620b2d9f9514cce1d8a4892 (patch)
tree1d6eb55d1fd81c31f83bacb03200dc812886944a /ChangeLog
parent8df71c98b2d2ad042e2cf8a508fffd92ee33814e (diff)
downloadruby-9bbc34ac6c68ed233620b2d9f9514cce1d8a4892.tar.gz
ruby-9bbc34ac6c68ed233620b2d9f9514cce1d8a4892.tar.xz
ruby-9bbc34ac6c68ed233620b2d9f9514cce1d8a4892.zip
* enum.c (first_i): Enumerator#first should consume only what is
needed. a patch from Marc-Andre Lafortune. [ruby-core:23661] * enum.c (enum_first): call to_int once for an argument. based on a patch from Marc-Andre Lafortune. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@23622 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog8
1 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 4059c4019..a09f8c818 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+Tue Jun 2 17:32:40 2009 Yukihiro Matsumoto <matz@ruby-lang.org>
+
+ * enum.c (first_i): Enumerator#first should consume only what is
+ needed. a patch from Marc-Andre Lafortune. [ruby-core:23661]
+
+ * enum.c (enum_first): call to_int once for an argument. based on
+ a patch from Marc-Andre Lafortune.
+
Tue Jun 2 13:27:21 2009 Kazuhiro NISHIYAMA <zn@mbf.nifty.com>
* test/ripper/test_filter.rb: add tests. see [ruby-dev:37856]