Skip to content

Commit

Permalink
*** empty log message ***
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/v1_1r@410 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
matz committed Apr 8, 1999
1 parent ec82e48 commit 39639c6
Show file tree
Hide file tree
Showing 4 changed files with 480 additions and 7 deletions.
8 changes: 4 additions & 4 deletions lib/debug.rb
Expand Up @@ -92,16 +92,16 @@ def debug_command(file, line, id, binding)
when /^c(ont)?$/
return
when /^s(tep)?\s*(\d+)?$/
if $1
lev = Integer($1)
if $2
lev = Integer($2)
else
lev = 1
end
@stop_next = lev
return
when /^n(ext)?\s*(\d+)?$/
if $1
lev = Integer($1)
if $2
lev = Integer($2)
else
lev = 1
end
Expand Down

0 comments on commit 39639c6

Please sign in to comment.