summaryrefslogtreecommitdiff
path: root/lib/debug.rb
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-07-08 13:28:57 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-07-08 13:28:57 +0000
commit7e16f9e7777781a4969537b5d9f659b1356b2786 (patch)
tree74e7913ad03c8400acd5c5b4c8706237f5e67aca /lib/debug.rb
parent92afa0522205ba0589d4c3d6e03837802a2c83fd (diff)
* lib/debug.rb, lib/profile.rb: fix to use RubyVM.
* lib/rdoc/parsers/parse_c.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17958 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/debug.rb')
-rw-r--r--lib/debug.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/debug.rb b/lib/debug.rb
index aeebbc5f8c..8a2f4f1a12 100644
--- a/lib/debug.rb
+++ b/lib/debug.rb
@@ -904,7 +904,7 @@ stdout.printf "Emacs support available.\n\n"
set_trace_func proc { |event, file, line, id, binding, klass, *rest|
DEBUGGER__.context.trace_func event, file, line, id, binding, klass
}
-VM::InstructionSequence.compile_option = {
+RubyVM::InstructionSequence.compile_option = {
trace_instruction: true
}
end