diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-09-05 08:40:27 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-09-05 08:40:27 +0000 |
commit | df27d91fc4de9215d6af58de191b2c105ef88678 (patch) | |
tree | d017ac4f0a339440fb13d2473673f254ce98ec38 /class.c | |
parent | 48653d5ef0ed47469d64170d70c8c2a9f21f159e (diff) |
* lib/observer.rb: a patch from nornagon <[email protected]>
merged to allow arbitrary names for update methods.
[ruby-core:05416]
* eval.c (rb_f_fcall): new method to avoid inefficiency of
obj.instance_eval{send(...)} tricks.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9082 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'class.c')
-rw-r--r-- | class.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -407,7 +407,8 @@ rb_include_module(klass, module) break; } } - c = RCLASS(c)->super = include_class_new(module, RCLASS(c)->super); + RCLASS(c)->super = include_class_new(module, RCLASS(c)->super); + c = RCLASS(c)->super; changed = 1; skip: module = RCLASS(module)->super; |