* 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:
akr 2010-08-01 00:46:18 +00:00
Родитель 572b8b3749
Коммит a35c3cf341
2 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@ -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

Просмотреть файл

@ -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);
}