From 4890f3a684aff94d93a5cc3f68fa8c67c1da6c19 Mon Sep 17 00:00:00 2001 From: matz Date: Tue, 29 Feb 2000 08:05:32 +0000 Subject: 2000-02-29 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@629 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/debug.rb | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'lib/debug.rb') diff --git a/lib/debug.rb b/lib/debug.rb index 7807ebd4da..4497fd161d 100644 --- a/lib/debug.rb +++ b/lib/debug.rb @@ -383,11 +383,12 @@ class DEBUGGER__ binding, binding_file, binding_line = @frames[frame_pos] stdout.printf "#%d %s:%s\n", frame_pos, binding_file, binding_line - when /^\s*fi(?:nish)?$/ - if frame_pos == 0 + when /^\s*fin(?:ish)?$/ + if frame_pos == @frames.size stdout.print "\"finish\" not meaningful in the outermost frame.\n" else @finish_pos = @frames.size - frame_pos + p @finish_pos frame_pos = 0 return end @@ -563,10 +564,10 @@ class DEBUGGER__ @frames.unshift [binding, file, line, id] when 'return', 'end' - @frames.shift if @frames.size == @finish_pos @stop_next = 1 end + @frames.shift when 'end' @frames.shift -- cgit v1.2.3