From 7d4ee1d235a90d98e94b12a6a2070d5e8b0c404f Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 30 Aug 2007 05:06:52 +0000 Subject: * proc.c (rb_obj_define_method): reverted. [ruby-talk:266637] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13319 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- proc.c | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'proc.c') diff --git a/proc.c b/proc.c index d1e4436bdb..3b6d9a94f4 100644 --- a/proc.c +++ b/proc.c @@ -1,6 +1,6 @@ /********************************************************************** - proc.c - Proc, Bindng, Env + proc.c - Proc, Binding, Env $Author$ $Date$ @@ -148,7 +148,6 @@ binding_alloc(VALUE klass) rb_binding_t *bind; obj = Data_Make_Struct(klass, rb_binding_t, binding_mark, binding_free, bind); - MEMZERO(bind, rb_binding_t, 1); return obj; } @@ -972,6 +971,14 @@ rb_mod_define_method(int argc, VALUE *argv, VALUE mod) return body; } +static VALUE +rb_obj_define_method(int argc, VALUE *argv, VALUE obj) +{ + VALUE klass = rb_singleton_class(obj); + + return rb_mod_define_method(argc, argv, klass); +} + /* * MISSING: documentation @@ -1495,6 +1502,9 @@ Init_Proc(void) /* Module#*_method */ rb_define_method(rb_cModule, "instance_method", rb_mod_method, 1); rb_define_private_method(rb_cModule, "define_method", rb_mod_define_method, -1); + + /* Kernel */ + rb_define_method(rb_mKernel, "define_singleton_method", rb_obj_define_method, -1); } /* -- cgit v1.2.3