From 5483bf268dc94f1f525067bf30b69caebbd6c77b 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: http://svn.ruby-lang.org/repos/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 567e53eb5..6ab9cb135 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 734bd8057..d1cbd76b6 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