mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/debug.rb (debug_command): added a deficient format specifier.
fixed: [ruby-core:05419] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@8741 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
8e7586a83e
commit
a7a1662681
2 changed files with 7 additions and 2 deletions
|
@ -1,6 +1,11 @@
|
|||
Sun Jul 10 12:47:01 2005 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* lib/debug.rb (debug_command): added a deficient format specifier.
|
||||
fixed: [ruby-core:05419]
|
||||
|
||||
Sat Jul 9 21:28:46 2005 Masaki Suketa <masaki.suketa@nifty.ne.jp>
|
||||
|
||||
* ext/win32ole/win32ole.c (ole_method_dispid): convert dispid
|
||||
* ext/win32ole/win32ole.c (ole_method_dispid): convert dispid
|
||||
in Ruby and C by INT2NUM and NUM2INT.
|
||||
|
||||
* ext/win32ole/win32ole.c (ole_invoke2): ditto.
|
||||
|
|
|
@ -324,7 +324,7 @@ class Context
|
|||
when /^\s*wat(?:ch)?\s+(.+)$/
|
||||
exp = $1
|
||||
break_points.push [true, 1, exp]
|
||||
stdout.printf "Set watchpoint %d\n", break_points.size, exp
|
||||
stdout.printf "Set watchpoint %d:%s\n", break_points.size, exp
|
||||
|
||||
when /^\s*b(?:reak)?$/
|
||||
if break_points.find{|b| b[1] == 0}
|
||||
|
|
Loading…
Add table
Reference in a new issue