зеркало из https://github.com/github/ruby.git
* eval_method.c (rb_define_alloc_func, rb_undef_alloc_func): should
define/undef on a signleton class. [ruby-core:09959] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15004 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
86da4be028
Коммит
aad2c434a7
|
@ -1,3 +1,10 @@
|
||||||
|
Sat Jan 12 18:27:41 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* eval.c (rb_define_alloc_func, rb_undef_alloc_func): should
|
||||||
|
define/undef on a signleton class. [ruby-core:09959]
|
||||||
|
|
||||||
|
9959]
|
||||||
|
|
||||||
Sat Jan 12 12:44:36 2008 NARUSE, Yui <naruse@ruby-lang.org>
|
Sat Jan 12 12:44:36 2008 NARUSE, Yui <naruse@ruby-lang.org>
|
||||||
|
|
||||||
* ext/nkf/nkf.c: rdoc update.
|
* ext/nkf/nkf.c: rdoc update.
|
||||||
|
|
|
@ -180,10 +180,10 @@ rb_add_method(VALUE klass, ID mid, NODE * node, int noex)
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
rb_define_alloc_func(VALUE klass, VALUE (*func) _((VALUE)))
|
rb_define_alloc_func(VALUE klass, VALUE (*func)(VALUE))
|
||||||
{
|
{
|
||||||
Check_Type(klass, T_CLASS);
|
Check_Type(klass, T_CLASS);
|
||||||
rb_add_method(CLASS_OF(klass), ID_ALLOCATOR, NEW_CFUNC(func, 0),
|
rb_add_method(rb_singleton_class(klass), ID_ALLOCATOR, NEW_CFUNC(func, 0),
|
||||||
NOEX_PRIVATE);
|
NOEX_PRIVATE);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -191,7 +191,7 @@ void
|
||||||
rb_undef_alloc_func(VALUE klass)
|
rb_undef_alloc_func(VALUE klass)
|
||||||
{
|
{
|
||||||
Check_Type(klass, T_CLASS);
|
Check_Type(klass, T_CLASS);
|
||||||
rb_add_method(CLASS_OF(klass), ID_ALLOCATOR, 0, NOEX_UNDEF);
|
rb_add_method(rb_singleton_class(klass), ID_ALLOCATOR, 0, NOEX_UNDEF);
|
||||||
}
|
}
|
||||||
|
|
||||||
rb_alloc_func_t
|
rb_alloc_func_t
|
||||||
|
|
Загрузка…
Ссылка в новой задаче