summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-12-24 08:02:00 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-12-24 08:02:00 +0000
commit743dad62707715fefd3e73393c11a9e64d8da67a (patch)
treecc2e7fa4c4d0e86122f9a39b0a623720856485f5 /lib
parent4bf83ffb07832c8d6cd497ae77e71766f1a04d76 (diff)
downloadruby-743dad62707715fefd3e73393c11a9e64d8da67a.tar.gz
ruby-743dad62707715fefd3e73393c11a9e64d8da67a.tar.xz
ruby-743dad62707715fefd3e73393c11a9e64d8da67a.zip
* class.c (ins_methods_i): should not show ID_ALLOCATOR.
* class.c (ins_methods_prot_i): ditto. * class.c (ins_methods_priv_i): ditto. * class.c (ins_methods_pub_i): ditto. * eval.c (call_trace_func): ditto. * eval.c (rb_undefined): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3204 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/irb/completion.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/irb/completion.rb b/lib/irb/completion.rb
index 30d60c244..448650e8e 100644
--- a/lib/irb/completion.rb
+++ b/lib/irb/completion.rb
@@ -122,7 +122,7 @@ module IRB
gv = eval "global_variables", bind
lv = eval "local_variables", bind
- cv = eval "type.constants", bind
+ cv = eval "self.type.constants", bind
if (gv | lv | cv).include?(receiver)
# foo.func and foo is local var.