summaryrefslogtreecommitdiffstats
path: root/lib/irb
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-05-22 16:37:22 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-05-22 16:37:22 +0000
commitb93143a9f63d45f8500d774c190e7ef9429cb730 (patch)
treeaf2795092963cbc0019eeea417ffae1ba24637c2 /lib/irb
parent43afbeeac449321f03cb2a9c38572c0287d55b24 (diff)
downloadruby-b93143a9f63d45f8500d774c190e7ef9429cb730.tar.gz
ruby-b93143a9f63d45f8500d774c190e7ef9429cb730.tar.xz
ruby-b93143a9f63d45f8500d774c190e7ef9429cb730.zip
* object.c (rb_obj_clone): defer copying freezing state after
calling initialize_copy(). [ruby-dev:20276] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3854 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/irb')
-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 67a0e5c7f..c207cf09e 100644
--- a/lib/irb/completion.rb
+++ b/lib/irb/completion.rb
@@ -140,7 +140,7 @@ module IRB
ObjectSpace.each_object(Module){|m|
next if m.name != "IRB::Context" and
/^(IRB|SLex|RubyLex|RubyToken)/ =~ m.name
- candidates.concat m.instance_methods
+ candidates.concat m.instance_methods(false)
}
candidates.sort!
candidates.uniq!