From ecc5c37818a0172152ffdd46e30db8830f4b83b6 Mon Sep 17 00:00:00 2001 From: nahi Date: Tue, 25 Feb 2003 14:11:40 +0000 Subject: [PATCH] * lib/debug.rb (DEBUGGER__::Context#debug_command): bp filename must be the basename of it. [ruby-talk:65644] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3532 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ lib/debug.rb | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index c991e1b23c..d5fafc1e67 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Tue Feb 25 23:03:08 2003 NAKAMURA Hiroshi + + * lib/debug.rb (DEBUGGER__::Context#debug_command): bp filename must + be the basename of it. [ruby-talk:65644] + Sun Feb 23 17:57:06 2003 WATANABE Hirofumi * lib/fileutils (fu_stream_blksize): wrong logial condition. diff --git a/lib/debug.rb b/lib/debug.rb index dc48f0de1c..74e06e010c 100644 --- a/lib/debug.rb +++ b/lib/debug.rb @@ -299,7 +299,7 @@ class Context when /^\s*b(?:reak)?\s+(?:(.+):)?(.+)$/ pos = $2 - file = File.basename($1) if $1 + file = File.basename($1 || file) if pos =~ /^\d+$/ pname = pos pos = pos.to_i