summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-02-04 08:09:14 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-02-04 08:09:14 +0000
commit6f7b3dccbd0429dcd86ef5d9b697acaa8249f064 (patch)
tree039282445855b8cd45ea83fd2c3551e9a50975e9 /lib
parent3a28abfc3d3ff4b05d3c8c009209e4b7f005eed9 (diff)
downloadruby-6f7b3dccbd0429dcd86ef5d9b697acaa8249f064.tar.gz
ruby-6f7b3dccbd0429dcd86ef5d9b697acaa8249f064.tar.xz
ruby-6f7b3dccbd0429dcd86ef5d9b697acaa8249f064.zip
* object.c (rb_class_real): should not follow ICLASS link
* variable.c (classname): should follow ICLASS link explicitly. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2042 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/debug.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/debug.rb b/lib/debug.rb
index 6c4d80e5a..b9703ed7d 100644
--- a/lib/debug.rb
+++ b/lib/debug.rb
@@ -450,7 +450,7 @@ class DEBUGGER__
stdout.print "At toplevel\n"
end
binding, binding_file, binding_line = @frames[frame_pos]
- stdout.printf "#%d %s:%s\n", frame_pos, binding_file, binding_line
+ stdout.printf "#%d %s:%s\n", frame_pos+1, binding_file, binding_line
when /^\s*down(?:\s+(\d+))?$/
previous_line = nil
@@ -465,7 +465,7 @@ class DEBUGGER__
stdout.print "At stack bottom\n"
end
binding, binding_file, binding_line = @frames[frame_pos]
- stdout.printf "#%d %s:%s\n", frame_pos, binding_file, binding_line
+ stdout.printf "#%d %s:%s\n", frame_pos+1, binding_file, binding_line
when /^\s*fin(?:ish)?$/
if frame_pos == @frames.size