From 99ce5395afde78317d1d3ea3a6fa6b7ca217c2ce Mon Sep 17 00:00:00 2001 From: nobu Date: Sat, 16 Jul 2005 14:43:34 +0000 Subject: * enumerator.c (Init_Enumerator): wrong argument specs. [ruby-core:05481] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8781 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ enumerator.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 567e53eb59..6ab9cb135f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Sat Jul 16 23:43:16 2005 Nobuyoshi Nakada + + * enumerator.c (Init_Enumerator): wrong argument specs. + [ruby-core:05481] + Sat Jul 16 15:52:50 2005 Hirokazu Yamamoto * win32/win32.[hc]: constified socket functions. [ruby-dev:26553] diff --git a/enumerator.c b/enumerator.c index 734bd80577..d1cbd76b64 100644 --- a/enumerator.c +++ b/enumerator.c @@ -404,8 +404,8 @@ enumerator_with_index(obj) void Init_Enumerator() { - rb_define_method(rb_mKernel, "to_enum", obj_to_enum, -2); - rb_define_method(rb_mKernel, "enum_for", obj_to_enum, -2); + rb_define_method(rb_mKernel, "to_enum", obj_to_enum, -1); + rb_define_method(rb_mKernel, "enum_for", obj_to_enum, -1); rb_define_method(rb_mEnumerable, "enum_with_index", enumerator_enum_with_index, 0); rb_define_method(rb_mEnumerable, "each_slice", enum_each_slice, 1); -- cgit v1.2.3