From 5c568c5cb3d91af356631ceb496bd0130e13cbc3 Mon Sep 17 00:00:00 2001 From: matz Date: Tue, 8 Jan 2008 09:50:01 +0000 Subject: * enum.c (enum_zip): honor length of the receiver, not the shortest length. [ruby-core:14738] * enum.c (enum_zip): returns array not enumerator for no block form. [ruby-core:14738] * enumerator.c (next_ii): do not ignore multiple values yielded. * array.c (rb_ary_zip): faster version without creating generators. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14952 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 8bfc5d883..480e670f8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,18 @@ Tue Jan 8 18:05:35 2008 Eric Hodel * bin/ri, lib/rdoc/ri/*: Replace with Ryan Davis' cached ri. +Tue Jan 8 17:32:07 2008 Yukihiro Matsumoto + + * enum.c (enum_zip): honor length of the receiver, not the + shortest length. [ruby-core:14738] + + * enum.c (enum_zip): returns array not enumerator for no block + form. [ruby-core:14738] + + * enumerator.c (next_ii): do not ignore multiple values yielded. + + * array.c (rb_ary_zip): faster version without creating generators. + Tue Jan 8 15:47:43 2008 NAKAMURA Usaku * enc/utf{16,32}_{be,le}.c: use &OnigEncodingName(*) instead of -- cgit