diff options
author | nahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-03-29 03:05:11 +0000 |
---|---|---|
committer | nahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-03-29 03:05:11 +0000 |
commit | 259aea24766b2dd2060e05754246562406ad91b8 (patch) | |
tree | 462b1a1571f755d121ef8f7082913d9c47532a92 /lib | |
parent | dea3c6bfaa245286c16907a6d0a0f1510f3bfe41 (diff) | |
download | ruby-259aea24766b2dd2060e05754246562406ad91b8.tar.gz ruby-259aea24766b2dd2060e05754246562406ad91b8.tar.xz ruby-259aea24766b2dd2060e05754246562406ad91b8.zip |
Changed regexp for parsing break command '.*?+' to '.+'.
See also [ruby-dev:16652].
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2301 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r-- | lib/debug.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/debug.rb b/lib/debug.rb index 481658ccb..f7eeac50c 100644 --- a/lib/debug.rb +++ b/lib/debug.rb @@ -297,7 +297,7 @@ class Context stdout.print "Trace off.\n" end - when /^\s*b(?:reak)?\s+((?:.*?+:)?.+)$/ + when /^\s*b(?:reak)?\s+((?:.+:)?.+)$/ pos = $1 if pos.index(":") pos = pos.split(":") |