зеркало из https://github.com/github/ruby.git
* class.c (rb_include_module): don't clear the method cache if the
included module has no method. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28813 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
572b8b3749
Коммит
a35c3cf341
|
@ -1,3 +1,8 @@
|
|||
Sun Aug 1 09:44:25 2010 Tanaka Akira <akr@fsij.org>
|
||||
|
||||
* class.c (rb_include_module): don't clear the method cache if the
|
||||
included module has no method.
|
||||
|
||||
Sun Aug 1 09:21:32 2010 Tanaka Akira <akr@fsij.org>
|
||||
|
||||
* ext/pathname/pathname.c (path_sub): Pathname#sub translated
|
||||
|
|
3
class.c
3
class.c
|
@ -659,7 +659,8 @@ rb_include_module(VALUE klass, VALUE module)
|
|||
}
|
||||
}
|
||||
c = RCLASS_SUPER(c) = include_class_new(module, RCLASS_SUPER(c));
|
||||
changed = 1;
|
||||
if (RMODULE_M_TBL(module) && RMODULE_M_TBL(module)->num_entries)
|
||||
changed = 1;
|
||||
skip:
|
||||
module = RCLASS_SUPER(module);
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче