зеркало из https://github.com/github/ruby.git
* class.c (rb_define_module_id_under): fix the name.
* class.c (rb_define_module_under): fix for prevvious changes. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24515 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
be245c09e6
Коммит
054770068a
|
@ -1,3 +1,9 @@
|
|||
Wed Aug 12 15:52:04 2009 NARUSE, Yui <naruse@ruby-lang.org>
|
||||
|
||||
* class.c (rb_define_module_id_under): fix the name.
|
||||
|
||||
* class.c (rb_define_module_under): fix for prevvious changes.
|
||||
|
||||
Wed Aug 12 15:32:16 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* class.c (rb_define_class_id_under, rb_define_module_id_under):
|
||||
|
|
4
class.c
4
class.c
|
@ -437,7 +437,7 @@ rb_define_module_under(VALUE outer, const char *name)
|
|||
}
|
||||
|
||||
VALUE
|
||||
rb_define_module_under(VALUE outer, ID id)
|
||||
rb_define_module_id_under(VALUE outer, ID id)
|
||||
{
|
||||
VALUE module;
|
||||
|
||||
|
@ -450,7 +450,7 @@ rb_define_module_under(VALUE outer, ID id)
|
|||
}
|
||||
module = rb_define_module_id(id);
|
||||
rb_const_set(outer, id, module);
|
||||
rb_set_class_path(module, outer, name);
|
||||
rb_set_class_path_string(module, outer, rb_id2str(id));
|
||||
|
||||
return module;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче