diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-07-26 16:05:35 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-07-26 16:05:35 +0000 |
commit | 8603c5934a4e613cdb07b04a1ce86fb1f21fdbd5 (patch) | |
tree | 44fdf5f0b148df430c6c0d667ef8139e73ed9b50 /load.c | |
parent | 298349d03bcdb6c25420d9a92265816d59892a1f (diff) | |
download | ruby-8603c5934a4e613cdb07b04a1ce86fb1f21fdbd5.tar.gz |
* eval_error.c (rb_print_undef_str): new function to raise
NameError for undefined method.
* load.c (rb_mod_autoload_p), object.c (rb_mod_const_get),
variable.c (rb_f_untrace_var, set_const_visibility), vm_method.c
(rb_mod_{remove,undef,alias}_method, set_method_visibility):
remove inadvertent symbol creation. based on the first patch by
Jeremy Evans at [ruby-core:38447]. [Feature #5089]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32686 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'load.c')
-rw-r--r-- | load.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -705,7 +705,11 @@ rb_mod_autoload(VALUE mod, VALUE sym, VALUE file) static VALUE rb_mod_autoload_p(VALUE mod, VALUE sym) { - return rb_autoload_p(mod, rb_to_id(sym)); + ID id = rb_check_id(&sym); + if (!id) { + return Qnil; + } + return rb_autoload_p(mod, id); } /* |