diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-04-09 18:33:52 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-04-09 18:33:52 +0000 |
commit | dc08e8a60f3ea931598f7d240c76ad3f09ae3cef (patch) | |
tree | 5628bd9e80090bdbba957883afa0559d81cce1c7 /variable.c | |
parent | ae6b9ced18f366e4ae054f8cc6d1eae3bb8cce9e (diff) | |
download | ruby-dc08e8a60f3ea931598f7d240c76ad3f09ae3cef.tar.gz |
* variable.c (rb_mod_name): search module path if classname is not
set yet. (ruby-bugs-ja PR#424)
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3663 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'variable.c')
-rw-r--r-- | variable.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/variable.c b/variable.c index 0f5185a5fa..2f35d53116 100644 --- a/variable.c +++ b/variable.c @@ -182,7 +182,7 @@ rb_mod_name(mod) VALUE path = classname(mod); if (path) return rb_str_dup(path); - return rb_str_new(0,0); + return rb_str_dup(rb_class_path(mod)); } VALUE @@ -1112,7 +1112,7 @@ rb_obj_remove_instance_variable(obj, name) rb_raise(rb_eSecurityError, "Insecure: can't modify instance variable"); if (OBJ_FROZEN(obj)) rb_error_frozen("object"); if (!rb_is_instance_id(id)) { - rb_name_error(id, "`%s' is not an instance variable", rb_id2name(id)); + rb_name_error(id, "`%s' is not allowed as an instance variable name", rb_id2name(id)); } switch (TYPE(obj)) { @@ -1232,7 +1232,7 @@ rb_mod_remove_const(mod, name) VALUE val; if (!rb_is_const_id(id)) { - rb_name_error(id, "`%s' is not constant", rb_id2name(id)); + rb_name_error(id, "`%s' is not allowed as a constant name", rb_id2name(id)); } if (!OBJ_TAINTED(mod) && rb_safe_level() >= 4) rb_raise(rb_eSecurityError, "Insecure: can't remove constant"); |