aboutsummaryrefslogtreecommitdiffstats
path: root/lib/debug.rb
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-03-21 15:13:23 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-03-21 15:13:23 +0000
commit58ef7c20880642c88d06b351f8bbaaa291898e58 (patch)
tree0ed5f63dd297a8bcc2dc5fa5e35b3e84a19a6ca2 /lib/debug.rb
parent108cf940d8d617dcabb5e5b17e6315b023ecc301 (diff)
downloadruby-58ef7c20880642c88d06b351f8bbaaa291898e58.tar.gz
* regex.c (re_compile_pattern): fix previous change.
* instruby.rb, ext/extmk.rb, ext/tk/lib/tk.rb, lib/benchmark.rb, lib/cgi.rb, lib/debug.rb, lib/getoptlong.rb, lib/jcode.rb, lib/optparse.rb, lib/time.rb, lib/date/format.rb, lib/irb/ruby-lex.rb: escape `[', `]', `-' in chracter class in regexp to avoid warning. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3595 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/debug.rb')
-rw-r--r--lib/debug.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/debug.rb b/lib/debug.rb
index 8f2999a3ab..9d49fafac7 100644
--- a/lib/debug.rb
+++ b/lib/debug.rb
@@ -425,7 +425,7 @@ class Context
b = previous_line ? previous_line - 10 : binding_line - 5
e = b + 9
else
- b, e = $1.split(/[-,]/)
+ b, e = $1.split(/[\-,]/)
if e
b = b.to_i
e = e.to_i