From 259aea24766b2dd2060e05754246562406ad91b8 Mon Sep 17 00:00:00 2001 From: nahi Date: Fri, 29 Mar 2002 03:05:11 +0000 Subject: 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 --- lib/debug.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') 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(":") -- cgit