diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-09-18 16:28:40 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-09-18 16:28:40 +0000 |
commit | 3c3abf8d9e4d3069a1388f811002bdb343d5e3c6 (patch) | |
tree | 75fa1da685a76f8793f3d0b1646d5489fa88d095 /lib | |
parent | e593a6a8bd487f51463906f8c8d678e726867fa5 (diff) | |
download | ruby-3c3abf8d9e4d3069a1388f811002bdb343d5e3c6.tar.gz ruby-3c3abf8d9e4d3069a1388f811002bdb343d5e3c6.tar.xz ruby-3c3abf8d9e4d3069a1388f811002bdb343d5e3c6.zip |
matz
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@943 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r-- | lib/irb/frame.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/irb/frame.rb b/lib/irb/frame.rb index a2d7de377..dcfa5c1d1 100644 --- a/lib/irb/frame.rb +++ b/lib/irb/frame.rb @@ -60,7 +60,7 @@ module IRB end @backtrace = Frame.new - set_trace_func proc{|event, file, line, id, binding| + set_trace_func proc{|event, file, line, id, binding, klass| @backtrace.trace_func(event, file, line, id, binding) } end |