* 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
This commit is contained in:
parent
c6a782c14e
commit
99ce5395af
@ -1,3 +1,8 @@
|
|||||||
|
Sat Jul 16 23:43:16 2005 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* enumerator.c (Init_Enumerator): wrong argument specs.
|
||||||
|
[ruby-core:05481]
|
||||||
|
|
||||||
Sat Jul 16 15:52:50 2005 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
|
Sat Jul 16 15:52:50 2005 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
|
||||||
|
|
||||||
* win32/win32.[hc]: constified socket functions. [ruby-dev:26553]
|
* win32/win32.[hc]: constified socket functions. [ruby-dev:26553]
|
||||||
|
@ -404,8 +404,8 @@ enumerator_with_index(obj)
|
|||||||
void
|
void
|
||||||
Init_Enumerator()
|
Init_Enumerator()
|
||||||
{
|
{
|
||||||
rb_define_method(rb_mKernel, "to_enum", 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, -2);
|
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, "enum_with_index", enumerator_enum_with_index, 0);
|
||||||
rb_define_method(rb_mEnumerable, "each_slice", enum_each_slice, 1);
|
rb_define_method(rb_mEnumerable, "each_slice", enum_each_slice, 1);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user