trepanning 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (181) hide show
  1. data/.gitignore +4 -0
  2. data/ChangeLog +1279 -235
  3. data/Makefile +13 -0
  4. data/NEWS +30 -0
  5. data/Rakefile +50 -14
  6. data/app/.gitignore +1 -0
  7. data/app/breakpoint.rb +7 -2
  8. data/app/brkptmgr.rb +12 -0
  9. data/app/cmd_parse.citrus +167 -0
  10. data/app/cmd_parse.kpeg +221 -0
  11. data/app/cmd_parse.rb +201 -0
  12. data/app/cmd_parser.rb +1914 -0
  13. data/app/complete.rb +79 -0
  14. data/app/condition.rb +1 -1
  15. data/app/core.rb +7 -11
  16. data/app/default.rb +1 -1
  17. data/app/disassemble.rb +3 -2
  18. data/app/file.rb +12 -36
  19. data/app/frame.rb +3 -2
  20. data/app/irb.rb +9 -5
  21. data/app/iseq.rb +46 -0
  22. data/app/options.rb +6 -30
  23. data/app/run.rb +5 -2
  24. data/app/util.rb +1 -2
  25. data/app/yarv.rb +11 -1
  26. data/bin/.gitignore +1 -0
  27. data/bin/trepan +6 -6
  28. data/data/.gitignore +1 -0
  29. data/interface/.gitignore +1 -0
  30. data/interface/base_intf.rb +9 -5
  31. data/interface/comcodes.rb +10 -8
  32. data/interface/user.rb +76 -17
  33. data/io/.gitignore +1 -0
  34. data/io/input.rb +39 -15
  35. data/io/tcpclient.rb +7 -1
  36. data/io/tcpfns.rb +5 -3
  37. data/io/tcpserver.rb +13 -10
  38. data/lib/.gitignore +1 -0
  39. data/lib/trepanning.rb +50 -13
  40. data/processor/.gitignore +1 -0
  41. data/processor/Makefile +7 -0
  42. data/processor/breakpoint.rb +7 -2
  43. data/processor/command/.gitignore +1 -0
  44. data/processor/command/Makefile +7 -0
  45. data/processor/command/alias.rb +2 -2
  46. data/processor/command/backtrace.rb +4 -0
  47. data/processor/command/base/cmd.rb +45 -2
  48. data/processor/command/base/subcmd.rb +4 -2
  49. data/processor/command/base/submgr.rb +23 -19
  50. data/processor/command/base/subsubcmd.rb +23 -1
  51. data/processor/command/base/subsubmgr.rb +13 -0
  52. data/processor/command/break.rb +34 -29
  53. data/processor/command/complete.rb +37 -0
  54. data/processor/command/condition.rb +2 -0
  55. data/processor/command/continue.rb +15 -18
  56. data/processor/command/disassemble.rb +5 -0
  57. data/processor/command/down.rb +1 -1
  58. data/processor/command/eval.rb +70 -0
  59. data/processor/command/exit.rb +4 -1
  60. data/processor/command/finish.rb +6 -4
  61. data/processor/command/frame.rb +6 -3
  62. data/processor/command/help.rb +97 -54
  63. data/processor/command/help/.gitignore +1 -0
  64. data/processor/command/help/README +10 -0
  65. data/processor/command/help/command.txt +48 -0
  66. data/processor/command/help/filename.txt +40 -0
  67. data/processor/command/help/location.txt +37 -0
  68. data/processor/command/info_subcmd/.gitignore +1 -0
  69. data/processor/command/info_subcmd/breakpoints.rb +9 -9
  70. data/processor/command/info_subcmd/{file.rb → files.rb} +92 -27
  71. data/processor/command/info_subcmd/frame.rb +41 -15
  72. data/processor/command/info_subcmd/iseq.rb +39 -17
  73. data/processor/command/info_subcmd/program.rb +2 -8
  74. data/processor/command/info_subcmd/registers.rb +12 -10
  75. data/processor/command/info_subcmd/registers_subcmd/.gitignore +1 -0
  76. data/processor/command/info_subcmd/ruby.rb +60 -0
  77. data/processor/command/irb.rb +26 -3
  78. data/processor/command/kill.rb +21 -10
  79. data/processor/command/list.rb +1 -1
  80. data/processor/command/macro.rb +37 -23
  81. data/processor/command/pr.rb +1 -1
  82. data/processor/command/reload.rb +4 -0
  83. data/processor/command/reload_subcmd/.gitignore +1 -0
  84. data/processor/command/restart.rb +9 -9
  85. data/processor/command/save.rb +29 -36
  86. data/processor/command/set_subcmd/.gitignore +1 -0
  87. data/processor/command/set_subcmd/auto_subcmd/.gitignore +1 -0
  88. data/processor/command/set_subcmd/confirm.rb +23 -0
  89. data/processor/command/set_subcmd/debug_subcmd/.gitignore +1 -0
  90. data/processor/command/set_subcmd/different.rb +2 -0
  91. data/processor/command/set_subcmd/events.rb +2 -0
  92. data/processor/command/set_subcmd/max.rb +9 -12
  93. data/processor/command/set_subcmd/max_subcmd/.gitignore +1 -0
  94. data/processor/command/set_subcmd/substitute_subcmd/.gitignore +1 -0
  95. data/processor/command/set_subcmd/trace.rb +7 -13
  96. data/processor/command/set_subcmd/trace_subcmd/.gitignore +1 -0
  97. data/processor/command/set_subcmd/trace_subcmd/buffer.rb +12 -27
  98. data/processor/command/set_subcmd/trace_subcmd/print.rb +10 -8
  99. data/processor/command/set_subcmd/trace_subcmd/var.rb +6 -10
  100. data/processor/command/show.rb +12 -1
  101. data/processor/command/show_subcmd/.gitignore +1 -0
  102. data/processor/command/show_subcmd/alias.rb +11 -15
  103. data/processor/command/show_subcmd/auto_subcmd/.gitignore +1 -0
  104. data/processor/command/show_subcmd/basename.rb +1 -9
  105. data/processor/command/show_subcmd/confirm.rb +25 -0
  106. data/processor/command/show_subcmd/debug_subcmd/.gitignore +1 -0
  107. data/processor/command/show_subcmd/macro.rb +32 -14
  108. data/processor/command/show_subcmd/max_subcmd/.gitignore +1 -0
  109. data/processor/command/show_subcmd/trace_subcmd/.gitignore +1 -0
  110. data/processor/command/show_subcmd/trace_subcmd/buffer.rb +11 -31
  111. data/processor/command/show_subcmd/trace_subcmd/print.rb +4 -20
  112. data/processor/command/source.rb +7 -1
  113. data/processor/command/up.rb +7 -4
  114. data/processor/default.rb +3 -1
  115. data/processor/eval.rb +13 -0
  116. data/processor/eventbuf.rb +3 -2
  117. data/processor/frame.rb +19 -0
  118. data/processor/help.rb +20 -0
  119. data/processor/load_cmds.rb +143 -24
  120. data/processor/location.rb +61 -10
  121. data/processor/main.rb +30 -11
  122. data/processor/mock.rb +5 -3
  123. data/processor/msg.rb +17 -0
  124. data/processor/running.rb +1 -1
  125. data/processor/subcmd.rb +3 -2
  126. data/processor/validate.rb +173 -185
  127. data/sample/.gitignore +1 -0
  128. data/sample/list-terminal-colors.rb +139 -0
  129. data/sample/rocky-dot-trepanrc +14 -0
  130. data/sample/rocky-trepan-colors.rb +47 -0
  131. data/test/Makefile +7 -0
  132. data/test/data/.gitignore +1 -0
  133. data/test/data/debugger-stop.cmd +3 -0
  134. data/test/data/debugger-stop.right +5 -0
  135. data/test/data/fname-with-blank.right +0 -3
  136. data/test/data/quit.right +0 -1
  137. data/test/data/quit2.cmd +6 -0
  138. data/test/data/quit2.right +3 -0
  139. data/test/data/testing.cmd +1 -0
  140. data/test/example/.gitignore +1 -0
  141. data/test/example/debugger-stop.rb +14 -0
  142. data/test/functional/.gitignore +2 -0
  143. data/test/functional/fn_helper.rb +7 -9
  144. data/test/functional/test-break-long.rb +7 -7
  145. data/test/functional/test-break.rb +7 -7
  146. data/test/functional/test-condition.rb +4 -4
  147. data/test/functional/test-delete.rb +6 -5
  148. data/test/functional/test-eval.rb +115 -0
  149. data/test/functional/test-raise.rb +1 -1
  150. data/test/functional/test-return.rb +1 -1
  151. data/test/integration/.gitignore +2 -0
  152. data/test/integration/helper.rb +6 -3
  153. data/test/integration/test-debugger-stop.rb +22 -0
  154. data/test/integration/test-quit.rb +8 -0
  155. data/test/unit/.gitignore +1 -0
  156. data/test/unit/Makefile +7 -0
  157. data/test/unit/test-app-brkpt.rb +0 -1
  158. data/test/unit/test-app-cmd_parse.rb +107 -0
  159. data/test/unit/test-app-cmd_parser.rb +22 -0
  160. data/test/unit/test-app-complete.rb +38 -0
  161. data/test/unit/test-app-condition.rb +20 -0
  162. data/test/unit/test-app-iseq.rb +31 -0
  163. data/test/unit/test-app-options.rb +9 -1
  164. data/test/unit/test-app-util.rb +0 -1
  165. data/test/unit/test-base-cmd.rb +46 -0
  166. data/test/unit/test-base-subcmd.rb +11 -2
  167. data/test/unit/test-base-submgr.rb +23 -0
  168. data/test/unit/test-base-subsubcmd.rb +20 -0
  169. data/test/unit/test-cmd-break.rb +22 -23
  170. data/test/unit/test-cmd-help.rb +4 -0
  171. data/test/unit/test-completion.rb +43 -0
  172. data/test/unit/test-io-tcpclient.rb +3 -2
  173. data/test/unit/test-proc-load_cmds.rb +10 -1
  174. data/test/unit/test-proc-location.rb +39 -0
  175. data/test/unit/test-proc-main.rb +1 -1
  176. data/test/unit/test-proc-validate.rb +47 -31
  177. data/trepanning.gemspec +45 -0
  178. metadata +247 -179
  179. data/app/core.rb-consider +0 -198
  180. data/test/functional/tmp/b3.rb +0 -5
  181. data/test/functional/tmp/immediate-bug1.rb +0 -9
data/.gitignore ADDED
@@ -0,0 +1,4 @@
1
+ /*~
2
+ /doc
3
+ /pkg
4
+ /tmp
data/ChangeLog CHANGED
@@ -1,3 +1,801 @@
1
+ 2011-03-12 rocky <rockyb@rubyforge.org>
2
+
3
+ * processor/command/help/command.txt, trepanning.gemspec: tabke ->
4
+ table
5
+
6
+ 2011-03-12 rocky <rockyb@rubyforge.org>
7
+
8
+ * test/unit/test-completion.rb: Comment out debug test
9
+
10
+ 2011-03-12 rocky <rockyb@rubyforge.org>
11
+
12
+ * processor/command/help.rb, processor/command/help/README,
13
+ processor/command/help/command.txt,
14
+ processor/command/help/filename.txt,
15
+ processor/command/help/filenames.txt,
16
+ processor/command/help/location.txt, test/unit/test-completion.rb:
17
+ Fix duplicate command completion of "help syntax". Help updated.
18
+
19
+ 2011-03-12 rocky <rockyb@rubyforge.org>
20
+
21
+ * processor/command/help.rb, processor/command/help/command.txt,
22
+ processor/command/help/filenames.txt,
23
+ processor/command/help/syntax.txt, processor/help.rb: Start
24
+ multi-level "help syntax"
25
+
26
+ 2011-03-12 rocky <rockyb@rubyforge.org>
27
+
28
+ * app/cmd_parse.kpeg, app/cmd_parser.rb,
29
+ processor/command/help/.gitignore,
30
+ processor/command/help/location.txt,
31
+ processor/command/info_subcmd/files.rb, processor/location.rb,
32
+ processor/validate.rb, test/unit/test-proc-validate.rb: File parsing
33
+ imporved to allow quoted strings. Sync with rb-trepanning.
34
+
35
+ 2011-03-11 rocky <rockyb@rubyforge.org>
36
+
37
+ * processor/command/help/.gitignore,
38
+ processor/command/help/filenames.txt,
39
+ test/unit/test-app-cmd_parser.rb, test/unit/test-app-iseq.rb: Clean
40
+ up filename parsing somewhat.
41
+
42
+ 2011-03-10 rocky <rockyb@rubyforge.org>
43
+
44
+ * app/cmd_parser.rb, processor/command/help.rb,
45
+ processor/command/help/location.txt,
46
+ processor/command/help/syntax.txt,
47
+ processor/command/info_subcmd/breakpoints.rb, processor/validate.rb:
48
+ Start moving text help, to text files.
49
+
50
+ 2011-03-10 rocky <rockyb@rubyforge.org>
51
+
52
+ * processor/command/continue.rb, processor/validate.rb,
53
+ test/functional/test-break-long.rb, test/functional/test-break.rb:
54
+ continue.rb: chase API change. validate.rb: remove crud.
55
+
56
+ 2011-03-10 rocky <rockyb@rubyforge.org>
57
+
58
+ * processor/validate.rb: Small sync with rbx-trepanning
59
+
60
+ 2011-03-10 rocky <rockyb@rubyforge.org>
61
+
62
+ * app/cmd_parse.rb: Small change
63
+
64
+ 2011-03-09 rocky <rockyb@rubyforge.org>
65
+
66
+ * app/cmd_parse.rb, processor/validate.rb: Small changes
67
+
68
+ 2011-03-09 rocky <rockyb@rubyforge.org>
69
+
70
+ * app/cmd_parse.kpeg, processor/command/break.rb,
71
+ processor/command/condition.rb, processor/command/continue.rb:
72
+ Update help for break, condition, conditinue
73
+
74
+ 2011-03-09 rocky <rockyb@rubyforge.org>
75
+
76
+ * app/breakpoint.rb, app/cmd_parse.kpeg, app/cmd_parser.rb,
77
+ processor/command/info_subcmd/breakpoints.rb, processor/validate.rb:
78
+ Conditions working properly now and we show "if/unless" properly in
79
+ "info break" as well.
80
+
81
+ 2011-03-09 rocky <rockyb@rubyforge.org>
82
+
83
+ * app/breakpoint.rb, app/cmd_parse.kpeg, app/cmd_parse.rb,
84
+ app/cmd_parser.rb, processor/breakpoint.rb,
85
+ processor/command/break.rb, processor/command/continue.rb,
86
+ processor/validate.rb: Add 'break <location> [ {"if" | "else}
87
+ <condition> ]. condition now uses position parsing as well. Revise
88
+ grammar for future use for "list".
89
+
90
+ 2011-03-08 rocky <rockyb@rubyforge.org>
91
+
92
+ * processor/command/info_subcmd/frame.rb: Add frame # in info frame
93
+
94
+
95
+ 2011-03-07 rocky <rockyb@rubyforge.org>
96
+
97
+ * Rakefile, app/file.rb, app/iseq.rb, processor/validate.rb,
98
+ test/data/testing.cmd, test/example/debugger-stop.rb,
99
+ test/functional/fn_helper.rb, test/functional/test-break.rb,
100
+ test/functional/test-condition.rb, test/functional/test-delete.rb:
101
+ All functional, integration and unit tests work again after KPEG
102
+ refactoring
103
+
104
+ 2011-03-07 rocky <rockyb@rubyforge.org>
105
+
106
+ * app/file.rb, app/iseq.rb, processor/command/break.rb,
107
+ processor/main.rb, processor/validate.rb: Split out instruction
108
+ sequence code. More will be coming later.
109
+
110
+ 2011-03-07 rocky <rockyb@rubyforge.org>
111
+
112
+ Merge branch 'master' of github.com:rocky/rb-trepanning
113
+
114
+ 2011-03-07 rocky <rockyb@rubyforge.org>
115
+
116
+ * app/breakpoint.rb: Raise an error if we can't set a breakpoint.
117
+
118
+ 2011-03-07 rocky <rockyb@rubyforge.org>
119
+
120
+ * app/file.rb, processor/validate.rb, test/unit/test-cmd-break.rb:
121
+ Address better finding line numbers for a file or starting
122
+ instruction sequence.
123
+
124
+ 2011-03-07 rocky <rockyb@rubyforge.org>
125
+
126
+ Merge branch 'master' of github.com:rocky/rb-trepanning
127
+
128
+ 2011-03-07 rocky <rockyb@rubyforge.org>
129
+
130
+ * app/file.rb: Search child iseqs in finding breakpoint line number
131
+ of for a file.
132
+
133
+ 2011-03-07 rocky <rockyb@rubyforge.org>
134
+
135
+ * app/cmd_parse.kpeg, app/cmd_parse.rb, app/cmd_parser.rb,
136
+ app/file.rb, processor/command/break.rb, processor/validate.rb,
137
+ test/unit/test-app-brkpt.rb, test/unit/test-app-cmd_parse.rb,
138
+ test/unit/test-cmd-break.rb: Really dumb mistakes in PEG grammar.
139
+ Unit tests now work with one skip which needs further investation as
140
+ to why it worked before.
141
+
142
+ 2011-03-07 rocky <rockyb@rubyforge.org>
143
+
144
+ * app/cmd_parse.kpeg, app/cmd_parse.rb, app/cmd_parser.rb,
145
+ app/irb.rb, data/debugger-stop.right, processor/validate.rb,
146
+ test/unit/test-proc-validate.rb: Partial cutover of uing KPEG for to
147
+ parse locations
148
+
149
+ 2011-03-06 rocky <rockyb@rubyforge.org>
150
+
151
+ * processor/location.rb: Remove some small crud
152
+
153
+ 2011-03-06 rocky <rockyb@rubyforge.org>
154
+
155
+ * processor/location.rb, processor/main.rb,
156
+ test/unit/test-proc-location.rb: Fix another bug; this time in
157
+ get_source_text
158
+
159
+ 2011-03-06 rvm <rocky-rvm@static-71-183-236-17.nycmny.fios.verizon.net>
160
+
161
+ * data/debugger-stop.right, lib/trepanning.rb,
162
+ test/data/debugger-stop.cmd, test/data/debugger-stop.right,
163
+ test/example/debugger-stop.rb, test/integration/helper.rb,
164
+ test/integration/test-debugger-stop.rb: ignore Module#debugger as
165
+ well as Kernel#debugger in filtered stop.
166
+
167
+ 2011-03-05 rocky <rockyb@rubyforge.org>
168
+
169
+ * test/unit/test-app-options.rb: Remove tempfile in unit test
170
+
171
+ 2011-03-05 rocky <rockyb@rubyforge.org>
172
+
173
+ * processor/command/restart.rb, processor/command/save.rb,
174
+ processor/load_cmds.rb: Sync with rbx-trepanning
175
+
176
+ 2011-03-05 rocky <rockyb@rubyforge.org>
177
+
178
+ * processor/command/base/submgr.rb: Remove Extraneous debug
179
+ statement (proving I use this on itself)
180
+
181
+ 2011-03-05 rocky <rockyb@rubyforge.org>
182
+
183
+ * app/default.rb, app/options.rb, bin/trepan, lib/trepanning.rb,
184
+ processor/command/base/submgr.rb, processor/command/restart.rb,
185
+ processor/command/save.rb, processor/command/set_subcmd/trace.rb,
186
+ processor/command/set_subcmd/trace_subcmd/buffer.rb,
187
+ processor/command/set_subcmd/trace_subcmd/var.rb,
188
+ processor/load_cmds.rb: Save/restore of debugger state across a
189
+ restart finally works!
190
+
191
+ 2011-03-05 rocky <rockyb@rubyforge.org>
192
+
193
+ Merge branch 'master' of github.com:rocky/rb-trepanning
194
+
195
+ 2011-03-05 rocky <rockyb@rubyforge.org>
196
+
197
+ * processor/command/base/submgr.rb, processor/command/save.rb,
198
+ processor/command/set_subcmd/trace.rb,
199
+ processor/command/set_subcmd/trace_subcmd/print.rb,
200
+ processor/command/set_subcmd/trace_subcmd/var.rb: Towards getting
201
+ restart to erase its startup file
202
+
203
+ 2011-03-05 rocky <rockyb@rubyforge.org>
204
+
205
+ * processor/command/base/submgr.rb, processor/command/save.rb,
206
+ processor/command/set_subcmd/trace.rb,
207
+ processor/command/set_subcmd/trace_subcmd/print.rb,
208
+ processor/command/set_subcmd/trace_subcmd/var.rb: Towards getting
209
+ restart to erase itself
210
+
211
+ 2011-03-04 rocky <rockyb@rubyforge.org>
212
+
213
+ * Rakefile, app/cmd_parse.kpeg, app/cmd_parser.rb: Fill out
214
+ location. File/Method names and Line/VM offsets. Not hooked into
215
+ debugger commands yet.
216
+
217
+ 2011-03-04 rocky <rockyb@rubyforge.org>
218
+
219
+ * Rakefile: Sync Rakefile with rbx-trepanning
220
+
221
+ 2011-03-04 rocky <rockyb@rubyforge.org>
222
+
223
+ * Rakefile, app/cmd_parse.kpeg: Add rake tasks to help with kpeg.
224
+
225
+ 2011-03-04 rocky <rockyb@rubyforge.org>
226
+
227
+ * Rakefile, app/cmd_parse.kpeg, app/cmd_parse.rb,
228
+ app/cmd_parser.rb, processor/validate.rb,
229
+ test/unit/test-app-cmd_parse.rb, trepanning.gemspec: Used KPeg
230
+ instead of Citrus as our PEG.
231
+
232
+ 2011-03-02 rocky <rockyb@rubyforge.org>
233
+
234
+ * processor/command/eval.rb: Sync with rbx-trepanning
235
+
236
+ 2011-03-02 rocky <rockyb@rubyforge.org>
237
+
238
+ I hate conflicted merges
239
+
240
+ 2011-03-02 rocky <rockyb@rubyforge.org>
241
+
242
+ * processor/command/eval.rb, processor/eval.rb,
243
+ test/functional/test-eval.rb, test/functional/test-raise.rb,
244
+ test/functional/test-return.rb, test/unit/test-proc-main.rb: Add to
245
+ eval? stripping "unless" and optional "then".
246
+
247
+ 2011-02-28 rocky <rockyb@rubyforge.org>
248
+
249
+ * app/brkptmgr.rb, processor/breakpoint.rb,
250
+ processor/command/eval.rb, processor/main.rb: In "eval?" extract
251
+ expression in "case", and echo that. Add CmdProcessor finalization
252
+ and in that remove breakpoints.
253
+
254
+ 2011-02-26 rocky <rockyb@rubyforge.org>
255
+
256
+ * app/cmd_parse.citrus, app/cmd_parse.rb,
257
+ test/unit/test-app-cmd_parse.rb: Add more location semantics.
258
+
259
+ 2011-02-25 rocky <rockyb@rubyforge.org>
260
+
261
+ * processor/validate.rb, test/unit/test-app-cmd_parse.rb,
262
+ test/unit/test-app-method_name.rb: Add location parse tests
263
+
264
+ 2011-02-25 rocky <rockyb@rubyforge.org>
265
+
266
+ * app/cmd_parse.citrus, app/cmd_parse.rb: Start filling out location
267
+
268
+
269
+ 2011-02-25 rocky <rockyb@rubyforge.org>
270
+
271
+ * app/cmd_parse.citrus, app/cmd_parse.rb, app/method_name.citrus,
272
+ app/method_name.rb: method_name -> cmd_parse to allow expansion
273
+
274
+ 2011-02-25 rocky <rockyb@rubyforge.org>
275
+
276
+ Merge branch 'master' of github.com:rocky/rb-trepanning
277
+
278
+ 2011-02-25 rocky <rockyb@rubyforge.org>
279
+
280
+ * processor/command/break.rb, processor/validate.rb,
281
+ test/unit/test-cmd-break.rb, test/unit/test-proc-validate.rb: An
282
+ instruction offset is now indicated with an `@' prefact rather than
283
+ 'O' or `o'.
284
+
285
+ 2011-02-25 rocky <rockyb@rubyforge.org>
286
+
287
+ * processor/command/eval.rb, test/functional/test-eval.rb: In eval?
288
+ we now also strip a leading 'return'.
289
+
290
+ 2011-02-25 rocky <rockyb@rubyforge.org>
291
+
292
+ Merge branch 'master' of github.com:rocky/rb-trepanning
293
+
294
+ 2011-02-25 rocky <rockyb@rubyforge.org>
295
+
296
+ * app/method_name.rb: Partial synchronize with rbx-trepanning.
297
+
298
+ 2011-02-23 rocky <rockyb@rubyforge.org>
299
+
300
+ * processor/command/alias.rb, processor/command/base/subsubcmd.rb,
301
+ processor/command/exit.rb, processor/command/restart.rb,
302
+ processor/command/show.rb,
303
+ processor/command/show_subcmd/trace_subcmd/buffer.rb,
304
+ test/unit/test-base-subcmd.rb, test/unit/test-base-subsubcmd.rb:
305
+ Call cmdproc finalization routine on exit and restart. Mention "show
306
+ alias" in alias help. Fix prefix for "show trace buffer". Sync with
307
+ rbx-trepanning.
308
+
309
+ 2011-02-22 rocky <rockyb@rubyforge.org>
310
+
311
+ * app/condition.rb, test/unit/test-app-condition.rb,
312
+ trepanning.gemspec: .gemspec -> trepanning.gemspec
313
+
314
+ 2011-02-21 rocky <rockyb@rubyforge.org>
315
+
316
+ * .gemspec, Rakefile, processor/command/source.rb: Use file
317
+ completion in "source" command. .gemspec -> trepanning.gemspec: I
318
+ don't like hidden .dotted names anyway.
319
+
320
+ 2011-02-20 rocky <rockyb@rubyforge.org>
321
+
322
+ * processor/command/backtrace.rb, processor/command/down.rb,
323
+ processor/command/frame.rb, processor/command/up.rb,
324
+ processor/frame.rb: Improve range checking on frame, up and down
325
+ commands.
326
+
327
+ 2011-02-19 rocky <rockyb@rubyforge.org>
328
+
329
+ * processor/command/kill.rb: Add kill! alias and update help
330
+
331
+ 2011-02-19 rocky <rockyb@rubyforge.org>
332
+
333
+ * processor/command/kill.rb: Add completion for "kill" command
334
+
335
+ 2011-02-19 rocky <rockyb@rubyforge.org>
336
+
337
+ * processor/command/base/subcmd.rb,
338
+ processor/command/info_subcmd/files.rb,
339
+ processor/command/info_subcmd/frame.rb,
340
+ processor/command/info_subcmd/iseq.rb,
341
+ processor/command/info_subcmd/registers.rb,
342
+ processor/command/info_subcmd/ruby.rb,
343
+ processor/command/set_subcmd/trace_subcmd/buffer.rb,
344
+ processor/command/set_subcmd/trace_subcmd/print.rb,
345
+ processor/command/show_subcmd/alias.rb,
346
+ processor/command/show_subcmd/macro.rb,
347
+ processor/command/show_subcmd/trace_subcmd/print.rb: Set CMD for
348
+ subcommands in one place. DRY code.
349
+
350
+ 2011-02-19 rocky <rockyb@rubyforge.org>
351
+
352
+ * processor/eventbuf.rb: Update copyright
353
+
354
+ 2011-02-19 rocky <rockyb@rubyforge.org>
355
+
356
+ * processor/eventbuf.rb: Update LineCache::getline call from API to
357
+ current one.
358
+
359
+ 2011-02-19 rocky <rockyb@rubyforge.org>
360
+
361
+ * processor/command/backtrace.rb, processor/command/frame.rb,
362
+ processor/command/up.rb, processor/frame.rb: Add frame number
363
+ completion. Why not?
364
+
365
+ 2011-02-19 rocky <rockyb@rubyforge.org>
366
+
367
+ * processor/command/show_subcmd/alias.rb: Add completion for "show
368
+ aliases"
369
+
370
+ 2011-02-18 rocky <rockyb@rubyforge.org>
371
+
372
+ * processor/command/eval.rb, processor/command/macro.rb,
373
+ processor/command/show_subcmd/macro.rb, processor/main.rb,
374
+ processor/msg.rb: show macros improvements: uses syntax highlighting
375
+ if requested. Add "show macro *" and show-macro long help.
376
+
377
+ 2011-02-18 rocky <rockyb@rubyforge.org>
378
+
379
+ * processor/command/eval.rb, processor/command/macro.rb,
380
+ processor/location.rb: Eval source text without leading if, elsif
381
+ while, or unitil Add aliases eval?, ev? and ev.
382
+
383
+ 2011-02-18 rocky <rockyb@rubyforge.org>
384
+
385
+ * app/core.rb: Change default event set.
386
+
387
+ 2011-02-18 rocky <rockyb@rubyforge.org>
388
+
389
+ * lib/trepanning.rb, processor/command/complete.rb,
390
+ processor/main.rb: Sync with rb-trepanning. Had broken "complete"
391
+ command in refactoring.
392
+
393
+ 2011-02-18 rocky <rockyb@rubyforge.org>
394
+
395
+ * app/complete.rb, app/frame.rb, lib/trepanning.rb,
396
+ processor/command/base/subsubcmd.rb,
397
+ processor/command/base/subsubmgr.rb,
398
+ processor/command/set_subcmd/different.rb, processor/load_cmds.rb,
399
+ test/unit/test-app-complete.rb, test/unit/test-completion.rb,
400
+ test/unit/test-proc-load_cmds.rb: Redo completion somewhat to be
401
+ more general and much input line when there are abreviations less.
402
+
403
+ 2011-02-16 rocky <rockyb@rubyforge.org>
404
+
405
+ * app/default.rb, app/run.rb, interface/user.rb, io/input.rb,
406
+ processor/load_cmds.rb, test/unit/test-app-options.rb,
407
+ test/unit/test-completion.rb: Completion was totally borked and so
408
+ was handling of Readline. Fix. Fix completion of aliases and test
409
+ for that now. Sync with rbx-trepanning.
410
+
411
+ 2011-02-15 rocky <rockyb@rubyforge.org>
412
+
413
+ * Rakefile: Rakefile: a tad nicer simpler
414
+
415
+ 2011-02-15 rocky <rockyb@rubyforge.org>
416
+
417
+ * Rakefile: Gemspec#file_name is what I need
418
+
419
+ 2011-02-15 rocky <rockyb@rubyforge.org>
420
+
421
+ * app/options.rb: Sync with rbx-trepanning
422
+
423
+ 2011-02-15 rocky <rockyb@rubyforge.org>
424
+
425
+ * NEWS, app/options.rb, bin/trepan, interface/user.rb, io/input.rb,
426
+ lib/trepanning.rb, processor/validate.rb: add --readline and
427
+ --no-readline options to trepanx validate.rb: fix bug get_and_int
428
+ error msg handling
429
+
430
+ 2011-02-14 rocky <rockyb@rubyforge.org>
431
+
432
+ Merge branch 'master' of github.com:rocky/rb-trepanning
433
+
434
+ 2011-02-14 rocky <rockyb@rubyforge.org>
435
+
436
+ * processor/command/help.rb, processor/command/macro.rb,
437
+ processor/main.rb, processor/running.rb: macro.rb: Macros are more
438
+ useful now. An array of strings pushes additional commands on the
439
+ command queue. help.rb: Show aliases and macros in help *. Add help
440
+ for exach of these individually.
441
+
442
+ 2011-02-14 rocky <rockyb@rubyforge.org>
443
+
444
+ * processor/command/help.rb, processor/command/macro.rb,
445
+ processor/main.rb, processor/running.rb: macro.rb: Macros are more
446
+ useful now. An array of strings pushes additional commands on the
447
+ command queue. help.rb: Show aliases and macros in help *. Add help
448
+ for exach of these individually.
449
+
450
+ 2011-02-13 rocky <rockyb@rubyforge.org>
451
+
452
+ * processor/command/info_subcmd/ruby.rb: I can't spell worth beans.
453
+
454
+
455
+ 2011-02-13 rocky <rockyb@rubyforge.org>
456
+
457
+ * app/core.rb, app/method_name.citrus, processor/command/finish.rb,
458
+ processor/main.rb, processor/running.rb: Start adding support for
459
+ leave yield trace events.
460
+
461
+ 2011-02-13 rocky <rockyb@rubyforge.org>
462
+
463
+ * app/method_name.rb: Don't mask Citrus error.
464
+
465
+ 2011-02-13 rocky <rockyb@rubyforge.org>
466
+
467
+ * app/method_name.rb, data/.gitignore,
468
+ test/unit/test-app-method_name.rb: Allow locations like x.foo where
469
+ x is not a method and foo is.
470
+
471
+ 2011-02-13 rocky <rockyb@rubyforge.org>
472
+
473
+ * interface/user.rb: Remove extraneous line in saving history
474
+
475
+ 2011-02-13 rocky <rockyb@rubyforge.org>
476
+
477
+ * interface/user.rb: Remove duplicate history save
478
+
479
+ 2011-02-13 rocky <rockyb@rubyforge.org>
480
+
481
+ * processor/command/info_subcmd/registers.rb: Add short help for
482
+ "info reg" and improve long help.
483
+
484
+ 2011-02-12 rocky <rockyb@rubyforge.org>
485
+
486
+ * processor/command/info_subcmd/frame.rb: Update help. This time for
487
+ sure!
488
+
489
+ 2011-02-12 rocky <rockyb@rubyforge.org>
490
+
491
+ * processor/command/info_subcmd/frame.rb: Slightly nicer "info
492
+ frame" - format more closely follow rbx-trepanning "info method"
493
+
494
+ 2011-02-12 rocky <rockyb@rubyforge.org>
495
+
496
+ * processor/command/info_subcmd/frame.rb: Slightly nicer "info
497
+ frame" - format more closely follow rbx-trepanning "info method"
498
+
499
+ 2011-02-12 rocky <rockyb@rubyforge.org>
500
+
501
+ * processor/command/info_subcmd/frame.rb: Slightly nicer "info
502
+ frame"
503
+
504
+ 2011-02-12 rocky <rockyb@rubyforge.org>
505
+
506
+ * processor/command/continue.rb,
507
+ processor/command/info_subcmd/files.rb: files.rb: add ctime.
508
+ continue: allow offsets on breakpoints. Sync with rbx.
509
+
510
+ 2011-02-12 rocky <rockyb@rubyforge.org>
511
+
512
+ * processor/command/info_subcmd/files.rb: Add mtime. Allow suffix
513
+ matches when requesting a file name
514
+
515
+ 2011-02-12 rocky <rockyb@rubyforge.org>
516
+
517
+ * .gemspec, io/tcpclient.rb, processor/command/list.rb,
518
+ processor/validate.rb, test/unit/test-io-tcpclient.rb,
519
+ test/unit/test-proc-validate.rb: Use method.type to explain why a
520
+ valid method might not be listable/breakpointable. tcpclient.rb:
521
+ typo others: small typos.
522
+
523
+ 2011-02-12 rocky <rockyb@rubyforge.org>
524
+
525
+ * .gemspec, Rakefile, app/method_name.citrus, app/method_name.rb,
526
+ app/yarv.rb, data/method_name.citrus, data/method_name.rb,
527
+ io/tcpclient.rb, processor/command/break.rb,
528
+ processor/command/disassemble.rb, processor/validate.rb,
529
+ test/unit/test-app-method_name.rb, test/unit/test-io-tcpclient.rb,
530
+ test/unit/test-proc-validate.rb: We're now using citrus to parse
531
+ method names and extract the corresponding method (rather than
532
+ eval). YAY! yarv.rb: more scanning fixes tcpclient.rb: add
533
+ 'disconnected?' and expose @state.
534
+
535
+ 2011-02-12 rocky <rockyb@rubyforge.org>
536
+
537
+ * processor/mock.rb: errmsg interface changed
538
+
539
+ 2011-02-11 rocky <rockyb@rubyforge.org>
540
+
541
+ * processor/command/info_subcmd/files.rb,
542
+ processor/command/info_subcmd/program.rb, processor/mock.rb: DRY
543
+ code a little bit more.
544
+
545
+ 2011-02-11 rocky <rockyb@rubyforge.org>
546
+
547
+ * processor/command/info_subcmd/ruby.rb: Add "info ruby" which is
548
+ really just RUBY_DESCRIPTION
549
+
550
+ 2011-02-11 rocky <rockyb@rubyforge.org>
551
+
552
+ * Rakefile, test/unit/test-completion.rb: Pass --verbose option to
553
+ rake tasks properly.
554
+
555
+ 2011-02-11 rocky <rockyb@rubyforge.org>
556
+
557
+ Merge branch 'master' of github.com:rocky/rb-trepanning
558
+
559
+ 2011-02-11 rocky <rockyb@rubyforge.org>
560
+
561
+ * io/input.rb, test/unit/test-completion.rb: input.rb: Make sure
562
+ readline finalization is done once. test-completion.rb: don't pull
563
+ in readline routines to test completion.
564
+
565
+ 2011-02-10 rocky <rockyb@rubyforge.org>
566
+
567
+ * interface/base_intf.rb, processor/command/irb.rb: Sync with
568
+ rbx-trepanning
569
+
570
+ 2011-02-10 rocky <rockyb@rubyforge.org>
571
+
572
+ * app/irb.rb, interface/base_intf.rb, interface/user.rb,
573
+ processor/command/irb.rb, processor/main.rb: More work on history
574
+ file saving and restoring and interaction with irb.
575
+
576
+ 2011-02-09 rocky <rockyb@rubyforge.org>
577
+
578
+ * processor/command/show_subcmd/basename.rb, test/data/quit2.cmd,
579
+ test/data/quit2.right, test/integration/helper.rb,
580
+ test/integration/test-quit.rb: Sync with rbx-trepanning
581
+
582
+ 2011-02-09 rocky <rockyb@rubyforge.org>
583
+
584
+ * processor/command/set_subcmd/confirm.rb,
585
+ processor/command/show_subcmd/confirm.rb: Add set/show confirm:
586
+ forgot to add new command files.
587
+
588
+ 2011-02-09 rocky <rockyb@rubyforge.org>
589
+
590
+ * processor/default.rb, processor/validate.rb: Add gdb-style
591
+ set/show confirm
592
+
593
+ 2011-02-09 rocky <rockyb@rubyforge.org>
594
+
595
+ * processor/command/irb.rb: variable name typo
596
+
597
+ 2011-02-09 rocky <rockyb@rubyforge.org>
598
+
599
+ * lib/trepanning.rb, processor/command/irb.rb: Change completion
600
+ proc on entering and leaving irb
601
+
602
+ 2011-02-09 rocky <rockyb@rubyforge.org>
603
+
604
+ * processor/command/eval.rb, processor/command/pr.rb,
605
+ processor/eval.rb, processor/location.rb: Add eval and without a
606
+ string eval's the current source code. Update and expand 'eval' help
607
+ text. Make code a little more like rbx-trepanning.
608
+
609
+ 2011-02-08 rocky <rockyb@rubyforge.org>
610
+
611
+ I hate conflicted merges
612
+
613
+ 2011-02-08 rocky <rockyb@rubyforge.org>
614
+
615
+ * interface/base_intf.rb, interface/user.rb, io/input.rb,
616
+ lib/trepanning.rb, processor/default.rb, processor/load_cmds.rb,
617
+ processor/main.rb: Save debugger commands in history now. Move
618
+ history saving code from debugger into user interface. Save history
619
+ file on exit in finalization routine.
620
+
621
+ 2011-02-06 rocky <rockyb@rubyforge.org>
622
+
623
+ * processor/load_cmds.rb: Sync with rbx-trepanning
624
+
625
+ 2011-02-06 rocky <rockyb@rubyforge.org>
626
+
627
+ * processor/command/base/cmd.rb, processor/command/base/subcmd.rb,
628
+ processor/load_cmds.rb, test/unit/test-base-cmd.rb,
629
+ test/unit/test-completion.rb: Fix bug in completing an initial list
630
+ of commands (null string '').
631
+
632
+ 2011-02-06 rocky <rockyb@rubyforge.org>
633
+
634
+ * processor/command/info_subcmd/files.rb: info file now uniq's
635
+ properly
636
+
637
+ 2011-02-06 rocky <rockyb@rubyforge.org>
638
+
639
+ * processor/command/info_subcmd/file.rb,
640
+ processor/command/info_subcmd/files.rb,
641
+ processor/command/info_subcmd/iseq.rb: info file -> info files to
642
+ match gdb better. Dynamic list completion in info files and iseq.
643
+ Usual cleanups
644
+
645
+ 2011-02-06 rocky <rockyb@rubyforge.org>
646
+
647
+ * processor/command/base/cmd.rb, test/unit/test-base-cmd.rb: mock
648
+ cmdprocessor init arg count now matches nonmock.
649
+
650
+ 2011-02-06 rocky <rockyb@rubyforge.org>
651
+
652
+ * processor/command/base/cmd.rb, processor/command/base/subcmd.rb,
653
+ test/unit/test-base-cmd.rb, test/unit/test-base-subcmd.rb: Allow for
654
+ more dynamic setting of completion array. Some other minor
655
+ corrections.
656
+
657
+ 2011-02-06 rocky <rockyb@rubyforge.org>
658
+
659
+ Merge branch 'master' of github.com:rocky/rb-trepanning
660
+
661
+ 2011-02-06 rocky <rockyb@rubyforge.org>
662
+
663
+ * data/method_name.citrus, data/method_name.rb: PEG parsing
664
+ experiments for parsing method names.
665
+
666
+ 2011-02-05 rocky <rockyb@rubyforge.org>
667
+
668
+ * app/yarv.rb: Scan YARV ranges, e.g. 0..10, and blocks "block in
669
+ <...>"
670
+
671
+ 2011-02-05 rocky <rockyb@rubyforge.org>
672
+
673
+ * sample/rocky-trepan-colors.rb: Update sample colors yet again
674
+
675
+ 2011-02-05 rocky <rockyb@rubyforge.org>
676
+
677
+ * io/tcpfns.rb, io/tcpserver.rb, lib/trepanning.rb,
678
+ processor/command/reload.rb, processor/default.rb,
679
+ test/unit/test-completion.rb: Don't complete if already complete.
680
+
681
+ 2011-02-05 rocky <rockyb@rubyforge.org>
682
+
683
+ * lib/trepanning.rb: Wrong default variable name in completion
684
+
685
+ 2011-02-05 rocky <rockyb@rubyforge.org>
686
+
687
+ * lib/trepanning.rb, processor/command/info_subcmd/file.rb,
688
+ processor/command/reload_subcmd/.gitignore, processor/load_cmds.rb,
689
+ test/unit/test-completion.rb: Add space to completion when last
690
+ token is complete. Break completion into its own routine and we now
691
+ start testing that. Sync with rbx-trepanning
692
+
693
+ 2011-02-04 rocky <rockyb@rubyforge.org>
694
+
695
+ * processor/command/complete.rb, processor/load_cmds.rb: Sync with
696
+ rbx-trepanning
697
+
698
+ 2011-02-04 rocky <rockyb@rubyforge.org>
699
+
700
+ * io/input.rb, processor/command/base/subcmd.rb,
701
+ processor/command/help.rb, processor/command/set_subcmd/max.rb,
702
+ processor/load_cmds.rb: input.rb: add termination routine for
703
+ readline on interrupt. Handle interrupt. Cache have_readline.
704
+ subcmd.rb: add completion for set boolean (on/off). help.rb: fix
705
+ completion after previous refactor
706
+
707
+ 2011-02-04 rocky <rockyb@rubyforge.org>
708
+
709
+ * processor/command/set_subcmd/events.rb: Add completions for "set
710
+ events".
711
+
712
+ 2011-02-04 rocky <rockyb@rubyforge.org>
713
+
714
+ * app/complete.rb, app/util.rb, interface/comcodes.rb,
715
+ io/tcpfns.rb, processor/command/base/cmd.rb,
716
+ processor/command/base/submgr.rb,
717
+ processor/command/base/subsubmgr.rb, processor/command/help.rb,
718
+ processor/command/info_subcmd/file.rb, processor/load_cmds.rb,
719
+ processor/subcmd.rb, test/unit/test-app-complete.rb,
720
+ test/unit/test-app-util.rb, test/unit/test-base-submgr.rb: Expand
721
+ completion down one level and and completion for subsub command
722
+ managers. This needs to be refactored. Add data for "info file"
723
+ tcpfns.rb, comcodes.rb: More tests for pre-defined constants.
724
+
725
+ 2011-02-04 rocky <rockyb@rubyforge.org>
726
+
727
+ * processor/command/base/subsubmgr.rb,
728
+ processor/command/set_subcmd/max.rb: Inch towards sub sub command
729
+ completion
730
+
731
+ 2011-02-03 rocky <rockyb@rubyforge.org>
732
+
733
+ * app/util.rb, processor/command/help.rb, processor/load_cmds.rb,
734
+ test/unit/test-cmd-help.rb: Filter out alias expansions if the
735
+ expanded form is already in the completion list.
736
+
737
+ 2011-02-03 rocky <rockyb@rubyforge.org>
738
+
739
+ * app/util.rb, lib/trepanning.rb, processor/command/base/cmd.rb,
740
+ processor/command/base/submgr.rb, processor/command/help.rb,
741
+ processor/command/show.rb, processor/command/source.rb,
742
+ processor/load_cmds.rb, test/data/fname-with-blank.right,
743
+ test/data/quit.right, test/unit/test-app-util.rb,
744
+ test/unit/test-cmd-help.rb: DRY and test completion code more. Add
745
+ some for help. Allow "show auto" without trailing space (e.g. show
746
+ autoeval") for ruby-debug compatibility Remove verbose output for
747
+ initfiles.
748
+
749
+ 2011-02-03 rocky <rockyb@rubyforge.org>
750
+
751
+ * io/input.rb, processor/command/base/cmd.rb,
752
+ processor/command/disassemble.rb, processor/command/help.rb: Add
753
+ command completion help and disassemble.
754
+
755
+ 2011-02-02 rocky <rockyb@rubyforge.org>
756
+
757
+ * interface/user.rb, io/input.rb, io/tcpserver.rb,
758
+ lib/trepanning.rb: Readline now uses prompt as it should for
759
+ completion. Handle readline errors better. And completion should
760
+ raise fewer exceptions.
761
+
762
+ 2011-02-02 rocky <rockyb@rubyforge.org>
763
+
764
+ * lib/trepanning.rb, processor/command/base/submgr.rb,
765
+ processor/load_cmds.rb: Better command-completion support.
766
+
767
+ 2011-02-02 rocky <rockyb@rubyforge.org>
768
+
769
+ I hate conflicted merges
770
+
771
+ 2011-02-02 rocky <rockyb@rubyforge.org>
772
+
773
+ * processor/command/base/submgr.rb, processor/load_cmds.rb,
774
+ test/unit/test-proc-load_cmds.rb: Add subcommand completion. Sync
775
+ with rbx-trepanning.
776
+
777
+ 2011-02-02 rocky <rockyb@rubyforge.org>
778
+
779
+ Merge branch 'master' of github.com:rocky/rb-trepanning
780
+
781
+ 2011-02-02 rocky <rockyb@rubyforge.org>
782
+
783
+ * io/input.rb, lib/trepanning.rb, processor/command/complete.rb,
784
+ processor/load_cmds.rb: Start command completion. Add debugger
785
+ "complete" command.
786
+
787
+ 2011-02-01 rocky <rockyb@rubyforge.org>
788
+
789
+ * app/disassemble.rb, app/options.rb: Cache highlighter
790
+
791
+ 2011-02-01 rocky <rockyb@rubyforge.org>
792
+
793
+ * app/yarv.rb: Some YARV scanning corrections.
794
+
795
+ 2011-02-01 rocky <rockyb@rubyforge.org>
796
+
797
+ * ChangeLog: See above
798
+
1
799
  2011-02-01 rocky <rockyb@rubyforge.org>
2
800
 
3
801
  * ChangeLog, NEWS: One more small NEWS update
@@ -9,8 +807,12 @@
9
807
  2011-02-01 rocky <rockyb@rubyforge.org>
10
808
 
11
809
  * ChangeLog, NEWS, app/disassemble.rb, app/yarv.rb,
12
- processor/command/disassemble.rb: Feb 1, 2011 (0.1.0) * Add Remote debugging interface. Add options --server --port * Add Syntax highlighting on Ruby and YARV listings and locations * Section highlighting on some commands * Use ;; to allow multiple debugger commands. Document debugger
13
- command syntax * include data files for debugging custom-require * Numerous bug fixes and code cleanups
810
+ processor/command/disassemble.rb: Feb 1, 2011 (0.1.0) * Add Remote
811
+ debugging interface. Add options --server --port * Add Syntax
812
+ highlighting on Ruby and YARV listings and locations * Section
813
+ highlighting on some commands * Use ;; to allow multiple debugger
814
+ commands. Document debugger command syntax * include data files for
815
+ debugging custom-require * Numerous bug fixes and code cleanups
14
816
 
15
817
  2011-02-01 rocky <rockyb@rubyforge.org>
16
818
 
@@ -85,8 +887,8 @@
85
887
  processor/command/set_subcmd/trace.rb, processor/load_cmds.rb:
86
888
  reload.rb: allow loading of a new debugger command files
87
889
  load_cmds.rb: allow loading files as well as directories. Use send
88
- over eval since it is better in reporting errors. *_subcmd/*.rb:
89
- DRY code for setting NAME and PREFIX
890
+ over eval since it is better in reporting errors. *_subcmd/*.rb: DRY
891
+ code for setting NAME and PREFIX
90
892
 
91
893
  2011-01-29 rocky <rockyb@rubyforge.org>
92
894
 
@@ -197,8 +999,12 @@
197
999
 
198
1000
  2011-01-11 rocky <rockyb@rubyforge.org>
199
1001
 
200
- * : commit ca6a6ce7ba4599c5edecda1b70cac3656cf50b54 Author: rocky
201
- <rockyb@rubyforge.org> Date: Tue Jan 11 19:28:29 2011 -0500
1002
+ Merge branch 'master' of github.com:rocky/rb-trepanning
1003
+
1004
+ 2011-01-11 rocky <rockyb@rubyforge.org>
1005
+
1006
+ * io/base_io.rb, io/tcpclient.rb, io/tcpfns.rb, io/tcpserver.rb:
1007
+ Move some out-of-process TCP I/O code from rubinius.
202
1008
 
203
1009
  2011-01-11 rocky <rockyb@rubyforge.org>
204
1010
 
@@ -208,19 +1014,30 @@
208
1014
 
209
1015
  2010-12-28 rocky <rockyb@rubyforge.org>
210
1016
 
211
- * : commit 6585edc946e7c7bc3b8cd20b86860435569d7dd9 Author: rocky
212
- <rockyb@rubyforge.org> Date: Tue Dec 28 14:04:16 2010 -0500
1017
+ Merge branch 'master' of github.com:rocky/rb-trepanning
1018
+
1019
+ 2010-12-28 rocky <rockyb@rubyforge.org>
1020
+
1021
+ * test/unit/cmd-helper.rb, test/unit/mock-helper.rb,
1022
+ test/unit/test-cmd-alias.rb, test/unit/test-cmd-break.rb,
1023
+ test/unit/test-cmd-endisable.rb, test/unit/test-cmd-help.rb,
1024
+ test/unit/test-cmd-kill.rb, test/unit/test-cmd-quit.rb,
1025
+ test/unit/test-cmd-step.rb: DRY test code more helper routines.
213
1026
 
214
1027
  2010-12-27 rocky <rockyb@rubyforge.org>
215
1028
 
216
1029
  * .gemspec, processor/main.rb, test/unit/test-app-file.rb: .gemspec:
217
1030
  need 1.9.2frame main.rb: wrong fn any -> all? But will rewrite more
218
- completely later. test-app-file.rb: remove debug statement.
1031
+ completely later. test-app-file.rb: remove debug statement.
219
1032
 
220
1033
  2010-12-27 rocky <rockyb@rubyforge.org>
221
1034
 
222
- * : commit 5fa8ccdc95a478e19f2a1f4874c8d24663aff36d Author: rocky
223
- <rockyb@rubyforge.org> Date: Mon Dec 27 10:48:14 2010 -0500
1035
+ Merge branch 'master' of github.com:rocky/rb-trepanning
1036
+
1037
+ 2010-12-27 rocky <rockyb@rubyforge.org>
1038
+
1039
+ * processor/command/list.rb, test/unit/test-base-subcmd.rb: list.rb:
1040
+ help text corrections
224
1041
 
225
1042
  2010-12-25 rocky <rockyb@rubyforge.org>
226
1043
 
@@ -281,13 +1098,18 @@
281
1098
  2010-12-15 rocky <rockyb@rubyforge.org>
282
1099
 
283
1100
  * interface/script.rb, test/data/quit.cmd, test/example/null.rb:
284
- quit.cmd: use no-confirmation form of quit. null.rb: need a
285
- statement or we don't even stop initially. script.rb: sync with
1101
+ quit.cmd: use no-confirmation form of quit. null.rb: need a
1102
+ statement or we don't even stop initially. script.rb: sync with
286
1103
  rbx-trepanning: allow input to be passed in.
287
1104
 
288
1105
  2010-12-15 rocky <rockyb@rubyforge.org>
289
1106
 
290
- * : I hate conflicted merges
1107
+ I hate conflicted merges
1108
+
1109
+ 2010-12-15 rocky <rockyb@rubyforge.org>
1110
+
1111
+ * ChangeLog, app/options.rb: Correct --help portion of --nx option.
1112
+
291
1113
 
292
1114
  2010-12-10 rocky <rockyb@rubyforge.org>
293
1115
 
@@ -391,8 +1213,28 @@
391
1213
 
392
1214
  2010-11-28 rocky <rockyb@rubyforge.org>
393
1215
 
394
- * : commit 55fbdeb97333f624b02b58a9bf289a0d2f4bb981 Author: rocky
395
- <rockyb@rubyforge.org> Date: Sun Nov 28 03:07:35 2010 -0500
1216
+ Merge branch 'master' of github.com:rocky/rb-trepanning
1217
+
1218
+ 2010-11-28 rocky <rockyb@rubyforge.org>
1219
+
1220
+ * Rakefile, processor/command/info_subcmd/registers_subcmd/dfp.rb,
1221
+ processor/command/info_subcmd/registers_subcmd/lfp.rb,
1222
+ processor/command/info_subcmd/registers_subcmd/sp.rb,
1223
+ processor/command/list.rb,
1224
+ processor/command/set_subcmd/auto_subcmd/eval.rb,
1225
+ processor/command/set_subcmd/auto_subcmd/irb.rb,
1226
+ processor/command/set_subcmd/auto_subcmd/list.rb,
1227
+ processor/command/set_subcmd/debug_subcmd/dbgr.rb,
1228
+ processor/command/set_subcmd/debug_subcmd/except.rb,
1229
+ processor/command/set_subcmd/debug_subcmd/macro.rb,
1230
+ processor/command/set_subcmd/debug_subcmd/skip.rb,
1231
+ processor/command/set_subcmd/debug_subcmd/stack.rb,
1232
+ processor/command/set_subcmd/substitute_subcmd/string.rb,
1233
+ processor/command/set_subcmd/trace_subcmd/print.rb,
1234
+ processor/command/show_subcmd/auto_subcmd/eval.rb,
1235
+ processor/command/show_subcmd/auto_subcmd/irb.rb,
1236
+ processor/command/show_subcmd/auto_subcmd/list.rb,
1237
+ processor/mock.rb: Start to DRY standalone-code.
396
1238
 
397
1239
  2010-11-26 rocky <rockyb@rubyforge.org>
398
1240
 
@@ -406,8 +1248,16 @@
406
1248
 
407
1249
  2010-11-13 rocky <rockyb@rubyforge.org>
408
1250
 
409
- * : commit b1a68214f2586ae7de9d9d48bd241a6aef1feedb Author: rocky
410
- <rockyb@rubyforge.org> Date: Sat Nov 13 05:38:33 2010 -0500
1251
+ Merge branch 'master' of github.com:rocky/rb-trepanning
1252
+
1253
+ 2010-11-13 rocky <rockyb@rubyforge.org>
1254
+
1255
+ * io/base_io.rb, io/null_output.rb, processor/command/continue.rb,
1256
+ processor/command/set_subcmd/auto.rb, processor/command/source.rb,
1257
+ processor/default.rb, processor/frame.rb, processor/location.rb,
1258
+ processor/validate.rb: "source -q" silences all prompt and debugger
1259
+ messages now. Fix bugs in output.eof auto.rb: remove
1260
+ no-longer-needed assignment
411
1261
 
412
1262
  2010-11-12 rocky <rockyb@rubyforge.org>
413
1263
 
@@ -419,8 +1269,8 @@
419
1269
  processor/command/restart.rb,
420
1270
  processor/command/show_subcmd/args.rb, processor/location.rb,
421
1271
  test/unit/test-app-run.rb: Greatly simplify restart code and is more
422
- reliable -- via new patch to 1.9.2. Thanks to Evan Phoenix for
423
- suggesting and doing in Rubinius. .gemspec: need to make sure we
1272
+ reliable -- via new patch to 1.9.2. Thanks to Evan Phoenix for
1273
+ suggesting and doing in Rubinius. .gemspec: need to make sure we
424
1274
  have a later Ruby 1.9.2 patch
425
1275
 
426
1276
  2010-11-09 rocky <rockyb@rubyforge.org>
@@ -430,12 +1280,18 @@
430
1280
  2010-11-09 rocky <rockyb@rubyforge.org>
431
1281
 
432
1282
  * processor/command/finish.rb, processor/command/list.rb,
433
- processor/frame.rb: Fix "list . NUM". finish.rb: fix doc string
1283
+ processor/frame.rb: Fix "list . NUM". finish.rb: fix doc string
434
1284
 
435
1285
  2010-11-08 rocky <rockyb@rubyforge.org>
436
1286
 
437
- * : commit 2926ca92715f2034ef9b560f784b4ab97ddfbea4 Author: rocky
438
- <rockyb@rubyforge.org> Date: Mon Nov 8 03:38:37 2010 -0500
1287
+ Merge branch 'master' of github.com:rocky/rb-trepanning
1288
+
1289
+ 2010-11-08 rocky <rockyb@rubyforge.org>
1290
+
1291
+ * test/functional/fn_helper.rb, test/functional/test-break.rb,
1292
+ test/functional/test-condition.rb, test/functional/test-delete.rb:
1293
+ list.rb: handle "list . count" and "list start end". Sync with
1294
+ rbx-trepanning.
439
1295
 
440
1296
  2010-11-04 rocky <rockyb@rubyforge.org>
441
1297
 
@@ -444,6 +1300,7 @@
444
1300
  processor/command/show_subcmd/hidelevel.rb, processor/default.rb:
445
1301
  Replace "set/show debugstack" with more general "set/show hidestack"
446
1302
 
1303
+
447
1304
  2010-10-27 rocky <rockyb@rubyforge.org>
448
1305
 
449
1306
  * NEWS, lib/trepanning.rb: Some small omissions.
@@ -463,8 +1320,11 @@
463
1320
 
464
1321
  2010-10-21 rocky <rockyb@rubyforge.org>
465
1322
 
466
- * : commit 956df3be0f3f3a6c77671e6be49ef4397da12ffb Author: rocky
467
- <rockyb@rubyforge.org> Date: Wed Oct 20 20:32:49 2010 -0400
1323
+ Merge branch 'master' of github.com:rocky/rb-trepanning
1324
+
1325
+ 2010-10-20 rocky <rockyb@rubyforge.org>
1326
+
1327
+ * processor/validate.rb: Comment typo.
468
1328
 
469
1329
  2010-10-20 rocky <rockyb@rubyforge.org>
470
1330
 
@@ -481,8 +1341,23 @@
481
1341
 
482
1342
  2010-10-19 rocky <rockyb@rubyforge.org>
483
1343
 
484
- * : commit f7f10e99c12dfef4148b9c34297f6b2909407527 Author: rocky
485
- <rockyb@rubyforge.org> Date: Tue Oct 19 12:17:19 2010 -0400
1344
+ Merge branch 'master' of github.com:rocky/rb-trepanning
1345
+ Conflicts: processor/command/finish.rb
1346
+
1347
+ 2010-10-19 rocky <rockyb@rubyforge.org>
1348
+
1349
+ * .gitignore, app/frame.rb, lib/trepanning.rb,
1350
+ processor/command/alias.rb, processor/command/backtrace.rb,
1351
+ processor/command/break.rb, processor/command/continue.rb,
1352
+ processor/command/directory.rb, processor/command/exit.rb,
1353
+ processor/command/finish.rb, processor/command/help.rb,
1354
+ processor/command/irb.rb, processor/command/kill.rb,
1355
+ processor/command/next.rb, processor/command/nocache.rb,
1356
+ processor/command/quit.rb, processor/command/raise.rb,
1357
+ processor/command/restart.rb, processor/command/save.rb,
1358
+ processor/frame.rb, processor/main.rb,
1359
+ test/functional/test-fn_helper.rb: Add test of test-fn_helper.rb
1360
+ Appease the RDoc God.
486
1361
 
487
1362
  2010-10-18 rocky <rockyb@rubyforge.org>
488
1363
 
@@ -528,8 +1403,16 @@
528
1403
 
529
1404
  2010-10-16 rocky <rockyb@rubyforge.org>
530
1405
 
531
- * : commit 8d11c5bd1a588223a84a490687c214f42bcb40c8 Author: rocky
532
- <rockyb@rubyforge.org> Date: Sat Oct 16 10:18:06 2010 -0400
1406
+ Merge branch 'master' of github.com:rocky/rb-trepanning
1407
+
1408
+ 2010-10-16 rocky <rockyb@rubyforge.org>
1409
+
1410
+ * processor/command/backtrace.rb, processor/command/base/cmd.rb,
1411
+ processor/command/break.rb, processor/command/condition.rb,
1412
+ processor/command/continue.rb, processor/command/debug.rb,
1413
+ processor/command/finish.rb, processor/command/irb.rb,
1414
+ processor/command/source.rb: Add Trepan::Command#name and dry code
1415
+ with it.
533
1416
 
534
1417
  2010-10-14 rocky <rockyb@rubyforge.org>
535
1418
 
@@ -538,13 +1421,25 @@
538
1421
 
539
1422
  2010-10-14 rocky <rockyb@rubyforge.org>
540
1423
 
541
- * : commit b75fbef2155a56d7c5db6cf92a069b037f5ebce6 Author: rocky
542
- <rockyb@rubyforge.org> Date: Thu Oct 14 23:46:16 2010 -0400
1424
+ Merge branch 'master' of github.com:rocky/rb-trepanning
1425
+
1426
+ 2010-10-14 rocky <rockyb@rubyforge.org>
1427
+
1428
+ * processor/command/pr.rb, processor/command/print.rb,
1429
+ processor/running.rb, test/functional/test-raise.rb,
1430
+ test/functional/test-return.rb, test/unit/test-proc-main.rb:
1431
+ debugger "print" (print truncating long output) renamed to "pr"
1432
+ since p and print are both Ruby commands. running.rb: Typo |= -> ||=
1433
+
1434
+
1435
+ 2010-10-13 rocky <rockyb@rubyforge.org>
1436
+
1437
+ Merge branch 'master' of github.com:rocky/rb-trepanning
543
1438
 
544
1439
  2010-10-13 rocky <rockyb@rubyforge.org>
545
1440
 
546
- * : commit f82c642a2f927aae66dc395284bdfe844dac43f5 Author: rocky
547
- <rockyb@rubyforge.org> Date: Wed Oct 13 10:52:05 2010 -0400
1441
+ * app/irb.rb, data/irbrc, processor/command/irb.rb: Keep in sync
1442
+ with rbx-trepanning.
548
1443
 
549
1444
  2010-10-13 rocky <rockyb@rubyforge.org>
550
1445
 
@@ -571,13 +1466,23 @@
571
1466
 
572
1467
  2010-10-12 rocky <rockyb@rubyforge.org>
573
1468
 
574
- * : commit d0414dd55cfcf924fe5b464e060682c811800bae Author: rocky
575
- <rockyb@rubyforge.org> Date: Tue Oct 12 18:11:00 2010 -0400
1469
+ Merge branch 'master' of github.com:rocky/rb-trepanning
1470
+
1471
+ 2010-10-12 rocky <rockyb@rubyforge.org>
1472
+
1473
+ * processor/frame.rb, test/unit/test-proc-frame.rb: A little cleaner
1474
+ I think due to sync with rbx-trepanning.
576
1475
 
577
1476
  2010-10-11 rocky <rockyb@rubyforge.org>
578
1477
 
579
- * : commit 50c3333d93dbeb70c900417b778d628395c9cc95 Author: rocky
580
- <rockyb@rubyforge.org> Date: Sun Oct 10 22:11:52 2010 -0400
1478
+ Merge branch 'master' of github.com:rocky/rb-trepanning
1479
+
1480
+ 2010-10-10 rocky <rockyb@rubyforge.org>
1481
+
1482
+ * .gemspec, ChangeLog, NEWS, Rakefile, lib/trepanning.rb: Rakefile:
1483
+ remove weird self-modifying double loop lib/trepanning.rb: now in
1484
+ 0.0.5.git .gemspec: Add add for rbx-trepanning NEWS: forgot to
1485
+ commit from before.
581
1486
 
582
1487
  2010-10-08 rocky <rockyb@rubyforge.org>
583
1488
 
@@ -587,6 +1492,7 @@
587
1492
 
588
1493
  * data/custom_require.rb, processor/main.rb: Remap custom_require.rb
589
1494
 
1495
+
590
1496
  2010-10-08 rocky <rockyb@rubyforge.org>
591
1497
 
592
1498
  * Makefile: Fix up boilerplate Makefile
@@ -624,17 +1530,28 @@
624
1530
 
625
1531
  2010-10-05 rocky <rockyb@rubyforge.org>
626
1532
 
627
- * : commit 3d425bf22f435f5498578059d59e800217ff223f Author: rocky
628
- <rockyb@rubyforge.org> Date: Tue Oct 5 05:46:56 2010 -0400
1533
+ Merge branch 'master' of github.com:rocky/rb-trepanning
1534
+
1535
+ 2010-10-05 rocky <rockyb@rubyforge.org>
1536
+
1537
+ * app/breakpoint.rb, app/brkptmgr.rb,
1538
+ test/functional/test-break.rb, test/functional/test-condition.rb,
1539
+ test/functional/test-delete.rb, test/unit/test-app-brkpt.rb,
1540
+ test/unit/test-cmd-break.rb: app/breakpoint.rb: respect passed
1541
+ breakpoint :id option. app/brkptmgr.rb: remove globalness of setting
1542
+ breakpoint ids test/* adjust as is now appropriate.
629
1543
 
630
1544
  2010-10-04 rocky <rockyb@rubyforge.org>
631
1545
 
632
1546
  * processor/breakpoint.rb, processor/eval.rb,
633
1547
  processor/validate.rb, test/unit/test-cmd-break.rb: We now scan
634
- parent instruction sequences to find breakpoint line numbers. Note:
635
- this requires an updated rb-threadframe from git. For example, suppose the code is: xx = 'break here' 1.times do debugger_is_here end If you are at the line of "debugger_is_here", the xx line is not
636
- part of that instruction sequence, but can be found by searching its
637
- parent instruction sequence.
1548
+ parent instruction sequences to find breakpoint line numbers. Note:
1549
+ this requires an updated rb-threadframe from git. For example,
1550
+ suppose the code is: xx = 'break here' 1.times do
1551
+ debugger_is_here end If you are at the line of
1552
+ "debugger_is_here", the xx line is not part of that instruction
1553
+ sequence, but can be found by searching its parent instruction
1554
+ sequence.
638
1555
 
639
1556
  2010-10-04 rocky <rockyb@rubyforge.org>
640
1557
 
@@ -664,13 +1581,13 @@
664
1581
 
665
1582
  * app/mock.rb, processor/default.rb, processor/location.rb,
666
1583
  processor/validate.rb: processor/*.rb: Add gdb-like "directory"
667
- command. Code was in rbx-trepanning. app/mock.rb: Need to be more
1584
+ command. Code was in rbx-trepanning. app/mock.rb: Need to be more
668
1585
  realistic now.
669
1586
 
670
1587
  2010-09-30 rocky <rockyb@rubyforge.org>
671
1588
 
672
1589
  * processor/validate.rb, test/unit/test-cmd-break.rb: Reinstate more
673
- flexible file/line breakpoint parsing. Be more lenient about file
1590
+ flexible file/line breakpoint parsing. Be more lenient about file
674
1591
  name matching, i.e. use basenames.
675
1592
 
676
1593
  2010-09-29 rocky <rockyb@rubyforge.org>
@@ -680,13 +1597,19 @@
680
1597
 
681
1598
  2010-09-28 rocky <rockyb@rubyforge.org>
682
1599
 
683
- * : commit 978ae3024f52c581a3d71c5e334b4226c7bb24ad Author: rocky
684
- <rockyb@rubyforge.org> Date: Tue Sep 28 21:35:55 2010 -0400
1600
+ Merge branch 'master' of github.com:rocky/rb-trepanning
685
1601
 
686
1602
  2010-09-28 rocky <rockyb@rubyforge.org>
687
1603
 
688
- * : commit cbd98bce731425d5bffef4094ac1ffa5152eaf6b Author: rocky
689
- <rockyb@rubyforge.org> Date: Tue Sep 28 21:30:16 2010 -0400
1604
+ * lib/trepanning.rb, processor/eval.rb: Add VERSION number
1605
+
1606
+ 2010-09-28 rocky <rockyb@rubyforge.org>
1607
+
1608
+ Merge branch 'master' of github.com:rocky/rb-trepanning
1609
+
1610
+ 2010-09-28 rocky <rockyb@rubyforge.org>
1611
+
1612
+ * processor/command/source.rb, processor/eval.rb: Small tweaks
690
1613
 
691
1614
  2010-09-27 rocky <rockyb@rubyforge.org>
692
1615
 
@@ -763,6 +1686,7 @@
763
1686
  * Rakefile, app/options.rb, bin/trepan, lib/trepanning.rb: Small
764
1687
  changes and try to keep in better compatibility/sync with rubinius.
765
1688
 
1689
+
766
1690
  2010-09-25 rocky <rockyb@rubyforge.org>
767
1691
 
768
1692
  * processor/command/show_subcmd/args.rb: Beef up demo code for show
@@ -771,8 +1695,19 @@
771
1695
 
772
1696
  2010-09-25 rocky <rockyb@rubyforge.org>
773
1697
 
774
- * : commit e2e8c3fb71b7de8e62c777e33294ce2ecb710c86 Author: rocky
775
- <rockyb@rubyforge.org> Date: Sat Sep 25 11:22:23 2010 -0400
1698
+ Merge branch 'master' of github.com:rocky/rbdbgr
1699
+
1700
+ 2010-09-25 rocky <rockyb@rubyforge.org>
1701
+
1702
+ * app/run.rb, processor/command/exit.rb,
1703
+ processor/command/info_subcmd/program.rb, processor/command/ps.rb,
1704
+ processor/command/show_subcmd/max_subcmd/stack.rb,
1705
+ processor/command/show_subcmd/max_subcmd/string.rb,
1706
+ processor/command/show_subcmd/max_subcmd/width.rb,
1707
+ processor/main.rb, test/unit/test-app-run.rb: app/run.rb: add demo
1708
+ and unit test processor/command/exit.rb: allow xxx! and make
1709
+ compatible with 1.8 Other small cleanups and synchronization with
1710
+ rbx-trepanning.
776
1711
 
777
1712
  2010-09-24 rocky <rockyb@rubyforge.org>
778
1713
 
@@ -1008,13 +1943,14 @@
1008
1943
  test/unit/test-proc-load_cmds.rb, test/unit/test-proc-main.rb,
1009
1944
  test/unit/test-proc-validate.rb, test/unit/test-subcmd-help.rb:
1010
1945
  Debugger -> Trepan. bin/rbdbgr -> bin/trepan. Package name is now
1011
- trepan. Hmm. may change the package name soon. There are still many
1946
+ trepan. Hmm. may change the package name soon. There are still many
1012
1947
  other reminants of rbdbgr. All in due time...
1013
1948
 
1014
1949
  2010-09-21 rocky <rockyb@rubyforge.org>
1015
1950
 
1016
1951
  * Makefile, app/Makefile, lib/Makefile: Makefiles were a little off.
1017
1952
 
1953
+
1018
1954
  2010-09-21 rocky <rockyb@rubyforge.org>
1019
1955
 
1020
1956
  * .gemspec, ChangeLog, Rakefile, lib/rbdbgr.rb: Add .gemspec and
@@ -1212,12 +2148,16 @@
1212
2148
  processor/command/macro.rb: sp.rb: run() Make use fo new
1213
2149
  Threadframe#sp_size. SIZE lists number of entries in stack; we now
1214
2150
  check for accessing outside of the range, No args lists all stack
1215
- entries. macro.rb: Tidy "macro defined" message.
2151
+ entries. macro.rb: Tidy "macro defined" message.
1216
2152
 
1217
2153
  2010-08-20 R. Bernstein <rocky@gnu.org>
1218
2154
 
1219
- * : commit 1aa24b2b7d105f4491cf3ebd8c8bc57f0f29246c Author: R.
1220
- Bernstein <rocky@gnu.org> Date: Fri Aug 20 19:58:09 2010 -0400
2155
+ Merge branch 'master' of github.com:rocky/rbdbgr
2156
+
2157
+ 2010-08-20 R. Bernstein <rocky@gnu.org>
2158
+
2159
+ * lib/rbdbgr.rb: debugger(): exec_event_tracing no longer exists and
2160
+ frame.trace_off is better.
1221
2161
 
1222
2162
  2010-08-11 rocky <rockyb@rubyforge.org>
1223
2163
 
@@ -1228,7 +2168,7 @@
1228
2168
 
1229
2169
  * app/display.rb, processor/command/display.rb:
1230
2170
  processor/command/display.rb: show initial value when setting
1231
- display - gdb does. app/display.rb: DRY code a little.
2171
+ display - gdb does. app/display.rb: DRY code a little.
1232
2172
 
1233
2173
  2010-08-11 R. Bernstein <rocky@gnu.org>
1234
2174
 
@@ -1249,13 +2189,22 @@
1249
2189
 
1250
2190
  2010-07-06 rocky <rockyb@rubyforge.org>
1251
2191
 
1252
- * : commit 2757e57310a7e236962a660e7f07d8ac5f995c62 Author: rocky
1253
- <rockyb@rubyforge.org> Date: Tue Jul 6 06:17:43 2010 -0400
2192
+ Merge branch 'master' of github.com:rocky/rbdbgr
2193
+
2194
+ 2010-07-06 rocky <rockyb@rubyforge.org>
2195
+
2196
+ * processor/command/frame.rb: 'frame' command help tweak.
1254
2197
 
1255
2198
  2010-06-20 rocky <rockyb@rubyforge.org>
1256
2199
 
1257
- * : commit 6858909c9938841e1f579a554e5ee72b842acf22 Author: rocky
1258
- <rockyb@rubyforge.org> Date: Sun Jun 20 04:50:53 2010 +0200
2200
+ Merge branch 'master' of github.com:rocky/rbdbgr
2201
+
2202
+ 2010-06-20 rocky <rockyb@rubyforge.org>
2203
+
2204
+ * app/disassemble.rb,
2205
+ processor/command/set_subcmd/substitute_subcmd/string.rb,
2206
+ test/unit/test-app-disassemble.rb: string.rb: help doc correction
2207
+ *disasemble.rb: One more unit test. Tidy demo output.
1259
2208
 
1260
2209
  2010-06-10 rocky <rockyb@rubyforge.org>
1261
2210
 
@@ -1308,7 +2257,7 @@
1308
2257
 
1309
2258
  * app/condition.rb, processor/command/condition.rb,
1310
2259
  processor/command/step.rb, processor/frame.rb,
1311
- processor/validate.rb: Work on thread support. validate.rb: don't
2260
+ processor/validate.rb: Work on thread support. validate.rb: don't
1312
2261
  show the frames of the event processor of non-current threads
1313
2262
  step.rb add "step thread" to step within the thread.
1314
2263
  app/condition.rb: Rbdbgr -> Debugger::Conditon module.
@@ -1328,6 +2277,7 @@
1328
2277
  processor/command/info_subcmd/thread.rb, processor/frame.rb,
1329
2278
  processor/validate.rb: Work on showing and switching thread frames.
1330
2279
 
2280
+
1331
2281
  2010-05-15 rocky <rockyb@rubyforge.org>
1332
2282
 
1333
2283
  * processor/command/debug.rb: No need to fiddle with prompt in
@@ -1335,8 +2285,12 @@
1335
2285
 
1336
2286
  2010-05-15 rocky <rockyb@rubyforge.org>
1337
2287
 
1338
- * : commit da2a0b67fbbc9973b62c98b21a7888b23afc802d Author: rocky
1339
- <rockyb@rubyforge.org> Date: Sat May 15 21:44:37 2010 -0400
2288
+ Merge branch 'master' of github.com:rocky/rbdbgr
2289
+
2290
+ 2010-05-15 rocky <rockyb@rubyforge.org>
2291
+
2292
+ * processor/command/show_subcmd/trace_subcmd/buffer.rb: Setting name
2293
+ was renamed a while ago. Didn't catch this then.
1340
2294
 
1341
2295
  2010-05-14 rocky <rockyb@rubyforge.org>
1342
2296
 
@@ -1346,8 +2300,8 @@
1346
2300
 
1347
2301
  * lib/rbdbgr.rb, processor/default.rb,
1348
2302
  test/functional/test-immediate-step-bug.rb: Add Kernel#rbdbgr as a
1349
- simple way to call the debugger. More trace disabling inside
1350
- debugger code. max stack default set back to 10 (from 16).
2303
+ simple way to call the debugger. More trace disabling inside
2304
+ debugger code. max stack default set back to 10 (from 16).
1351
2305
 
1352
2306
  2010-05-13 R. Bernstein <rockyb@rubyforge.org>
1353
2307
 
@@ -1356,7 +2310,7 @@
1356
2310
  processor/command/set_subcmd/max.rb, test/unit/test-app-util.rb:
1357
2311
  Debugging in rails now works - tested only with rails 2 and mongrel.
1358
2312
  Turn off tracing in debugger setup (new, debugger) until better
1359
- solutions are implemented. Some stray debug statements a minor bug
2313
+ solutions are implemented. Some stray debug statements a minor bug
1360
2314
  fixes, e.g. "set max stack" was printing 2 times as many entries.
1361
2315
 
1362
2316
  2010-05-11 rocky <rockyb@rubyforge.org>
@@ -1371,7 +2325,7 @@
1371
2325
  test/unit/test-app-brkpt.rb, test/unit/test-app-brkptmgr.rb,
1372
2326
  test/unit/test-app-disassemble.rb, test/unit/test-app-frame.rb,
1373
2327
  test/unit/test-app-thread.rb: Work on "info thread <num>". More in
1374
- needed. Also one breakpoint test fails probably in conjunction with
2328
+ needed. Also one breakpoint test fails probably in conjunction with
1375
2329
  changes after Ruby SVN 27660 and 27690.
1376
2330
 
1377
2331
  2010-05-10 R. Bernstein <rockyb@rubyforge.org>
@@ -1396,11 +2350,13 @@
1396
2350
  processor/command/set_subcmd/debug_subcmd/stack.rb,
1397
2351
  processor/validate.rb, test/functional/test-debugger-call-bug.rb:
1398
2352
  One of several bugs keeping Debugger#debugger from working more than
1399
- the first time. More fixes to follow. debug_subcmd/stack.rb: Setting wrong instance variable
1400
- interface/user.rb, app/core.rb: move finalize from user to Debugger
1401
- where we can make sure we've turned of tracing beforehand. validate: we are getting into a recursive trace when removing
1402
- debugger iseqs. Omit until we figure out a better fix. app/file.rb: guard against adding to ISEQ__ hash while enumerating
1403
- over it.
2353
+ the first time. More fixes to follow. debug_subcmd/stack.rb:
2354
+ Setting wrong instance variable interface/user.rb, app/core.rb: move
2355
+ finalize from user to Debugger where we can make sure we've turned
2356
+ of tracing beforehand. validate: we are getting into a recursive
2357
+ trace when removing debugger iseqs. Omit until we figure out a
2358
+ better fix. app/file.rb: guard against adding to ISEQ__ hash while
2359
+ enumerating over it.
1404
2360
 
1405
2361
  2010-05-07 rocky <rockyb@rubyforge.org>
1406
2362
 
@@ -1410,8 +2366,11 @@
1410
2366
 
1411
2367
  2010-05-07 R. Bernstein <rockyb@rubyforge.org>
1412
2368
 
1413
- * : commit 9efe1dcbf996993382eb50fb901f8d396dcb6608 Author: rocky
1414
- <rockyb@rubyforge.org> Date: Fri May 7 18:40:33 2010 -0400
2369
+ Merge branch 'master' of github.com:rocky/rbdbgr
2370
+
2371
+ 2010-05-07 rocky <rockyb@rubyforge.org>
2372
+
2373
+ * app/core.rb: Small cleanups.
1415
2374
 
1416
2375
  2010-05-07 rocky <rockyb@rubyforge.org>
1417
2376
 
@@ -1501,7 +2460,7 @@
1501
2460
  processor/command/show_subcmd/debug_subcmd/stack.rb,
1502
2461
  processor/default.rb, processor/main.rb,
1503
2462
  test/unit/test-base-subcmd.rb: More work on macros. Check validity
1504
- of expansion result. Add macro expansion debugging.
2463
+ of expansion result. Add macro expansion debugging.
1505
2464
 
1506
2465
  2010-05-04 rocky <rockyb@rubyforge.org>
1507
2466
 
@@ -1586,7 +2545,7 @@
1586
2545
  processor/command/show_subcmd/trace_subcmd/buffer.rb,
1587
2546
  processor/default.rb, processor/msg.rb,
1588
2547
  test/unit/test-base-subcmd.rb: set maxstring -> set max[imum]
1589
- string. set width -> set max width. Still need to handle show.
2548
+ string. set width -> set max width. Still need to handle show.
1590
2549
 
1591
2550
  2010-05-03 rocky <rockyb@rubyforge.org>
1592
2551
 
@@ -1619,7 +2578,7 @@
1619
2578
 
1620
2579
  * app/core.rb, processor/command/debug.rb, processor/main.rb:
1621
2580
  core.rb: add mutex to ensure we don't switch threads while
1622
- debugging. debug.rb: hide setup code into the debugger. main.rb:
2581
+ debugging. debug.rb: hide setup code into the debugger. main.rb:
1623
2582
  don't debug into hidden frames
1624
2583
 
1625
2584
  2010-04-29 rocky <rockyb@rubyforge.org>
@@ -1657,7 +2616,8 @@
1657
2616
  * processor/command/print.rb, processor/main.rb: print.rb: now
1658
2617
  preserves spacing given in command main.rb: now captures command
1659
2618
  before aliasing (and later macro expansion) as well as string of
1660
- first token given and remaining string after first token. Handling macros is where we are going with this.
2619
+ first token given and remaining string after first token. Handling
2620
+ macros is where we are going with this.
1661
2621
 
1662
2622
  2010-04-25 rocky <rockyb@rubyforge.org>
1663
2623
 
@@ -1668,6 +2628,7 @@
1668
2628
  * processor/command/reload.rb,
1669
2629
  processor/command/reload_subcmd/command.rb: Add a "reload command".
1670
2630
 
2631
+
1671
2632
  2010-04-23 rocky <rockyb@rubyforge.org>
1672
2633
 
1673
2634
  * processor/default.rb, processor/load_cmds.rb, processor/mock.rb,
@@ -1735,8 +2696,14 @@
1735
2696
 
1736
2697
  2010-04-14 rocky <rockyb@rubyforge.org>
1737
2698
 
1738
- * : commit 7f31efad73be0d13dfb4596e88bf33d18b7b85cd Author: rocky
1739
- <rockyb@rubyforge.org> Date: Wed Apr 14 06:50:37 2010 -0400
2699
+ Merge branch 'master' of git@github.com:rocky/rbdbgr
2700
+
2701
+ 2010-04-14 rocky <rockyb@rubyforge.org>
2702
+
2703
+ * app/brkpt.rb, app/brkptmgr.rb, processor/breakpoint.rb,
2704
+ test/unit/test-app-brkpt.rb, test/unit/test-app-brkptmgr.rb: Chagne
2705
+ Breakpoint.new to take an options hash and add option to set what
2706
+ kind of breakpoint: line/offset.
1740
2707
 
1741
2708
  2010-04-13 rocky <rockyb@rubyforge.org>
1742
2709
 
@@ -1840,8 +2807,8 @@
1840
2807
  test/unit/test-proc-help.rb, test/unit/test-proc-hook.rb,
1841
2808
  test/unit/test-proc-main.rb, test/unit/test-proc-validate.rb,
1842
2809
  test/unit/test-subcmd-help.rb: require_relative %w(a b c) =>
1843
- require_relative 'a/b/c' Starting with SVN revision #26959 require_relative no longer accepts
1844
- an array argument.
2810
+ require_relative 'a/b/c' Starting with SVN revision #26959
2811
+ require_relative no longer accepts an array argument.
1845
2812
 
1846
2813
  2010-04-03 rocky <rockyb@rubyforge.org>
1847
2814
 
@@ -2010,10 +2977,10 @@
2010
2977
 
2011
2978
  * interface/script.rb, processor/command/help.rb,
2012
2979
  processor/default.rb, processor/main.rb: Some small script (debugger
2013
- "source" command) fixes. script.rb: Don't show debugger output if
2014
- running a script. main.rb; Slightly better handling of blank
2015
- command lines help.rb: don't show aliases for a commmand where help
2016
- on subcommands were asked for.
2980
+ "source" command) fixes. script.rb: Don't show debugger output if
2981
+ running a script. main.rb; Slightly better handling of blank command
2982
+ lines help.rb: don't show aliases for a commmand where help on
2983
+ subcommands were asked for.
2017
2984
 
2018
2985
  2010-03-20 rocky <rockyb@rubyforge.org>
2019
2986
 
@@ -2047,9 +3014,9 @@
2047
3014
  processor/main.rb, test/functional/fn_helper.rb,
2048
3015
  test/functional/test-delete.rb, test/functional/test-finish.rb,
2049
3016
  test/functional/test-step.rb: New 'raise' command which raises an
2050
- exception in the debugged program. The debugged-program's return values are now prefaced with R=>
2051
- rather than =>. Hopefully this makes things clearer while still
2052
- somewhat intuitive.
3017
+ exception in the debugged program. The debugged-program's return
3018
+ values are now prefaced with R=> rather than =>. Hopefully this
3019
+ makes things clearer while still somewhat intuitive.
2053
3020
 
2054
3021
  2010-03-14 rocky <rockyb@rubyforge.org>
2055
3022
 
@@ -2071,15 +3038,15 @@
2071
3038
  test/functional/test-condition.rb, test/functional/test-delete.rb,
2072
3039
  test/functional/test-finish.rb, test/functional/test-next.rb,
2073
3040
  test/functional/test-step.rb, test/functional/test-trace-var.rb:
2074
- Show exception object when we have 'raise' event. location output
2075
- has changed from prior commit. Track in test cases. Show exception
3041
+ Show exception object when we have 'raise' event. location output
3042
+ has changed from prior commit. Track in test cases. Show exception
2076
3043
  object on 'raise' exception.
2077
3044
 
2078
3045
  2010-03-13 rocky <rockyb@rubyforge.org>
2079
3046
 
2080
3047
  * app/frame.rb, processor/command/info_subcmd/program.rb,
2081
3048
  processor/hook.rb, processor/location.rb, processor/main.rb: Show
2082
- more information in location. If a call, the method name and params
3049
+ more information in location. If a call, the method name and params
2083
3050
  If a return the return value.
2084
3051
 
2085
3052
  2010-03-13 rocky <rockyb@rubyforge.org>
@@ -2087,12 +3054,13 @@
2087
3054
  * app/default.rb, lib/rbdbgr.rb: Now that we have a patch for
2088
3055
  ruby-1.9 to fix SEGV's in eval, debug_str works. Some minor tweaks.
2089
3056
 
3057
+
2090
3058
  2010-03-13 rocky <rockyb@rubyforge.org>
2091
3059
 
2092
3060
  * app/irb.rb, data/irbrc, processor/command/irb.rb: irb.rb:
2093
- Syncronize IRB's BACK_TRACE_LIMIT with the debugger's. irbrc:
2094
- "file" for eval shouldn't contain ":" since that causes IRB to think
2095
- to traceback are IRB bugs.
3061
+ Syncronize IRB's BACK_TRACE_LIMIT with the debugger's. irbrc: "file"
3062
+ for eval shouldn't contain ":" since that causes IRB to think to
3063
+ traceback are IRB bugs.
2096
3064
 
2097
3065
  2010-03-11 rocky <rockyb@rubyforge.org>
2098
3066
 
@@ -2145,7 +3113,7 @@
2145
3113
 
2146
3114
  * app/irb.rb, data/irbrc, processor/command/irb.rb,
2147
3115
  processor/main.rb: Add command inside irb: dbgr to issue debugger
2148
- statements. Dry irb code a little.
3116
+ statements. Dry irb code a little.
2149
3117
 
2150
3118
  2010-03-11 rocky <rockyb@rubyforge.org>
2151
3119
 
@@ -2197,7 +3165,7 @@
2197
3165
  processor/command/set_subcmd/substitute_subcmd/eval.rb,
2198
3166
  processor/command/up.rb, processor/frame.rb,
2199
3167
  test/unit/test-proc-frame.rb: frame.rb, iseq.rb: use/show SHA1's for
2200
- instruction sequences. {up,down,frame,eval,stack}.rb: DRY code.
3168
+ instruction sequences. {up,down,frame,eval,stack}.rb: DRY code.
2201
3169
  eval.rb, frame.rb: allow a frame parameter to eval.
2202
3170
 
2203
3171
  2010-03-09 rocky <rockyb@rubyforge.org>
@@ -2206,7 +3174,8 @@
2206
3174
  processor/command/set_subcmd/substitute_subcmd/eval.rb,
2207
3175
  processor/frame.rb, processor/location.rb, processor/main.rb:
2208
3176
  Automatic eval string remapping to a file in "list" stack and
2209
- location listings. Manual remapping too via "set substitute eval". Todo possibly remove set substitute eval or change it to take a
3177
+ location listings. Manual remapping too via "set substitute eval".
3178
+ Todo possibly remove set substitute eval or change it to take a
2210
3179
  frame #. Work in rb-threadframe to get sha1/checksum of iseq instead
2211
3180
  of inspect name.
2212
3181
 
@@ -2220,7 +3189,7 @@
2220
3189
  test/functional/test-delete.rb, test/functional/test-finish.rb,
2221
3190
  test/functional/test-step.rb: main.rb: auto-eval output looks more
2222
3191
  like irb using inspect and prefaced with => print.rb: Add print
2223
- command which uses safe-repr for output. eaval.rb: add a kind of
3192
+ command which uses safe-repr for output. eaval.rb: add a kind of
2224
3193
  eval that field hide exceptions.
2225
3194
 
2226
3195
  2010-03-08 rocky <rockyb@rubyforge.org>
@@ -2252,12 +3221,13 @@
2252
3221
  * app/default.rb, app/options.rb, bin/rbdbgr, lib/rbdbgr.rb,
2253
3222
  test/unit/test-app-options.rb: Add --nx and @settings[:nx] options.
2254
3223
 
3224
+
2255
3225
  2010-03-08 R. Bernstein <rocky@gnu.org>
2256
3226
 
2257
3227
  * interface/script.rb, lib/rbdbgr.rb: rbdbgr.rb: Bug: --command used
2258
- wrong interface. singleton methods debug and debug_str: pass options
2259
- to Debugger.new. Set different off on debug_s tr by
2260
- default
3228
+ wrong interface. singleton methods debug and debug_str:
3229
+ pass options to Debugger.new. Set different off on debug_s
3230
+ tr by default
2261
3231
 
2262
3232
  2010-03-07 R. Bernstein <rocky@gnu.org>
2263
3233
 
@@ -2269,8 +3239,9 @@
2269
3239
 
2270
3240
  * app/default.rb, app/options.rb, bin/rbdbgr, lib/rbdbgr.rb,
2271
3241
  test/unit/test-app-options.rb: Start --command option. Not fully
2272
- done yet. options.rb: Fix bug in show_version(). setup_options(): make more
2273
- functional in handling of --help and --version. lib/rbdbgr.rb: setup options in a way that won't mess up
3242
+ done yet. options.rb: Fix bug in show_version(). setup_options():
3243
+ make more functional in handling of --help and --version.
3244
+ lib/rbdbgr.rb: setup options in a way that won't mess up
2274
3245
  DEFAULT_CMDLINE_SETTINGS. Accumulate startup-files for --command
2275
3246
  option.
2276
3247
 
@@ -2303,7 +3274,7 @@
2303
3274
 
2304
3275
  * app/core.rb, app/options.rb, bin/rbdbgr, lib/rbdbgr.rb,
2305
3276
  test/unit/test-app-options.rb: Add first rbdbgr option --chdir. Fix
2306
- bugs in handling that. app/core.rb DEFAULT_SETTINGS ->
3277
+ bugs in handling that. app/core.rb DEFAULT_SETTINGS ->
2307
3278
  CORE_DEFAULT_SETTINGS to avoid constant name clashes.
2308
3279
 
2309
3280
  2010-03-01 rocky <rockyb@rubyforge.org>
@@ -2375,13 +3346,13 @@
2375
3346
  processor/command/show_subcmd/debug.rb, profile/irbrc,
2376
3347
  test/unit/test-app-util.rb: Lots of bug fixes and goodness.
2377
3348
  app/frame.rb: was listing C params in reverse order. safe_repr each
2378
- arg was adding a non-existent optional argument info_subcmd/args.rb:
2379
- Fix buggy test for whether params may have changed. Also fix wrong
2380
- C param order. Rakefile: forgot to add data directory to
2381
- distribution profile/irbrc -> data/irbrc, app/irb.rb: consolidate
2382
- files into one directory. Data wins app/util.rb: safe_repr now
2383
- matches quotes and can be told what suffix (...) to use rbdbgr.rb:
2384
- don't debug inside in debug.
3349
+ arg was adding a non-existent optional argument
3350
+ info_subcmd/args.rb: Fix buggy test for whether params may have
3351
+ changed. Also fix wrong C param order.
3352
+ Rakefile: forgot to add data directory to distribution profile/irbrc
3353
+ -> data/irbrc, app/irb.rb: consolidate files into one directory.
3354
+ Data wins app/util.rb: safe_repr now matches quotes and can be told
3355
+ what suffix (...) to use rbdbgr.rb: don't debug inside in debug.
2385
3356
 
2386
3357
  2010-02-26 rocky <rockyb@rubyforge.org>
2387
3358
 
@@ -2459,11 +3430,12 @@
2459
3430
  When this is fixed we can do the below. Until then we need to at
2460
3431
  least remove C calls and returns and possibly other events as well.
2461
3432
 
3433
+
2462
3434
  2010-02-23 rocky <rockyb@rubyforge.org>
2463
3435
 
2464
3436
  * app/file.rb, processor/command/info_subcmd/break.rb,
2465
3437
  processor/validate.rb, test/unit/test-proc-validate.rb: break.rb:
2466
- allow showing breakpoint by number. Improve help. app/file.rb:
3438
+ allow showing breakpoint by number. Improve help. app/file.rb:
2467
3439
  remove Ruby warning messages validate.rb: add int list routine
2468
3440
 
2469
3441
  2010-02-22 rocky <rockyb@rubyforge.org>
@@ -2474,9 +3446,9 @@
2474
3446
  test/functional/test-break.rb, test/functional/test-condition.rb,
2475
3447
  test/functional/test-delete.rb, test/unit/cmd-helper.rb,
2476
3448
  test/unit/test-cmd-break.rb: sp.rb: Add ability to change VM stack
2477
- entries. frame.rb: Fix bug which was messing up class values inside
3449
+ entries. frame.rb: Fix bug which was messing up class values inside
2478
3450
  C functions breakpoint.rb: make message look more like gdb Remove
2479
- some Ruby warning messages. main.rb: remove duplicate
3451
+ some Ruby warning messages. main.rb: remove duplicate
2480
3452
  load_debugger_commands method
2481
3453
 
2482
3454
  2010-02-20 rocky <rockyb@rubyforge.org>
@@ -2510,7 +3482,7 @@
2510
3482
  * app/core.rb, app/display.rb, app/frame.rb,
2511
3483
  processor/command/display.rb, processor/command/where.rb,
2512
3484
  processor/display.rb, processor/hook.rb, processor/main.rb:
2513
- where.rb, frame.rb: C function class name workaround. display.rb,
3485
+ where.rb, frame.rb: C function class name workaround. display.rb,
2514
3486
  hook.rb, main.rb: start display expressions. Not working yet - wait
2515
3487
  for next commit.
2516
3488
 
@@ -2524,7 +3496,7 @@
2524
3496
  * processor/command/info_subcmd/program.rb,
2525
3497
  processor/command/info_subcmd/return.rb,
2526
3498
  processor/command/set_subcmd/return.rb: info_subcmd/program.rb:
2527
- Don't assume we have an iseq. return.rb: remove C-call again, until
3499
+ Don't assume we have an iseq. return.rb: remove C-call again, until
2528
3500
  we can figure out what's wrong.
2529
3501
 
2530
3502
  2010-02-18 rocky <rockyb@rubyforge.org>
@@ -2539,13 +3511,14 @@
2539
3511
  processor/command/set_subcmd/return.rb,
2540
3512
  processor/command/set_subcmd/substitute_subcmd/string.rb,
2541
3513
  processor/mock.rb: return.rb: Add a way to set a method return
2542
- value: "set return". string.rb, different.rb: improve help strings
3514
+ value: "set return". string.rb, different.rb: improve help strings
2543
3515
  mock.rb: set ISEQS__ and SCRIPT_ISEQS__
2544
3516
 
2545
3517
  2010-02-17 rocky <rockyb@rubyforge.org>
2546
3518
 
2547
3519
  * processor/command/info_subcmd/iseq.rb: Bug in running "info iseq"
2548
3520
 
3521
+
2549
3522
  2010-02-17 rocky <rockyb@rubyforge.org>
2550
3523
 
2551
3524
  * processor/command/set_subcmd/different.rb,
@@ -2585,9 +3558,9 @@
2585
3558
  processor/command/enable.rb, processor/load_cmds.rb,
2586
3559
  processor/main.rb: breakpoint.rb: Better invalid breakpoint number
2587
3560
  error messages condition.rb: condition closer to working - but still
2588
- not operational. main.rb, load_cmds.rb: move declaration of
2589
- commands attr_accessor load_cmds.rb: better demo code main.rb:
2590
- closer to interpreting breakpoint condition
3561
+ not operational. main.rb, load_cmds.rb: move declaration of commands
3562
+ attr_accessor load_cmds.rb: better demo code main.rb: closer to
3563
+ interpreting breakpoint condition
2591
3564
 
2592
3565
  2010-02-15 rocky <rockyb@rubyforge.org>
2593
3566
 
@@ -2613,7 +3586,7 @@
2613
3586
  2010-02-15 rocky <rockyb@rubyforge.org>
2614
3587
 
2615
3588
  * README, lib/rbdbgr.rb, processor/command/list.rb: rbdbgr.rb: Add
2616
- Debugger.debug singleton. Set return code properly. list.rb: small
3589
+ Debugger.debug singleton. Set return code properly. list.rb: small
2617
3590
  bug in listing
2618
3591
 
2619
3592
  2010-02-14 rocky <rockyb@rubyforge.org>
@@ -2664,7 +3637,7 @@
2664
3637
 
2665
3638
  * processor/command/help.rb, processor/validate.rb,
2666
3639
  test/unit/test-cmd-help.rb: help.rb: Give help on command name for
2667
- alias. validate.rb: allow lookup for iseq when there is only one.
3640
+ alias. validate.rb: allow lookup for iseq when there is only one.
2668
3641
  test-cmd-help.rb: more extensive testing.
2669
3642
 
2670
3643
  2010-02-12 rocky <rockyb@rubyforge.org>
@@ -2686,7 +3659,7 @@
2686
3659
  2010-02-11 rocky <rockyb@rubyforge.org>
2687
3660
 
2688
3661
  * lib/rbdbgr.rb, profile/irbrc: lib/rbdbgr.rb: Set SCRIPT_ISEQS so
2689
- this be used. profile/irbrc: note that you can use 'q' for quit.
3662
+ this be used. profile/irbrc: note that you can use 'q' for quit.
2690
3663
 
2691
3664
  2010-02-11 rocky <rockyb@rubyforge.org>
2692
3665
 
@@ -2708,8 +3681,8 @@
2708
3681
  * processor/command/set_subcmd/trace.rb,
2709
3682
  processor/command/show_subcmd/basename.rb,
2710
3683
  processor/command/show_subcmd/trace.rb, processor/help.rb:
2711
- show_subcmd/trace.rb: Add 'show trace'. processor/help.rb: fix bug
2712
- in summary help basename.rb: standalone correction. trace.rb: much
3684
+ show_subcmd/trace.rb: Add 'show trace'. processor/help.rb: fix bug
3685
+ in summary help basename.rb: standalone correction. trace.rb: much
2713
3686
  more in the way of describing what's going on in the help.
2714
3687
 
2715
3688
  2010-02-09 rocky <rockyb@rubyforge.org>
@@ -2733,6 +3706,7 @@
2733
3706
  processor/main.rb, test/unit/test-proc-hook.rb,
2734
3707
  test/unit/test-proc-validate.rb: First command hook (autoirb) added.
2735
3708
 
3709
+
2736
3710
  2010-02-07 rocky <rockyb@rubyforge.org>
2737
3711
 
2738
3712
  * processor/hook.rb, processor/main.rb,
@@ -2749,6 +3723,7 @@
2749
3723
 
2750
3724
  * test/functional/test-delete.rb: Add first delete functional test.
2751
3725
 
3726
+
2752
3727
  2010-01-27 rocky <rockyb@rubyforge.org>
2753
3728
 
2754
3729
  * processor/breakpoint.rb, processor/command/delete.rb: Start delete
@@ -2780,8 +3755,8 @@
2780
3755
  processor/command/info_subcmd/file.rb,
2781
3756
  test/functional/test-break.rb, test/unit/test-cmd-endisable.rb: Fix
2782
3757
  bug in info break. Allow bp number to get reset, although what's
2783
- really needed is a rework of the bp and manger interfaces. Get
2784
- tests working again.
3758
+ really needed is a rework of the bp and manger interfaces. Get tests
3759
+ working again.
2785
3760
 
2786
3761
  2009-12-30 rocky <rockyb@rubyforge.org>
2787
3762
 
@@ -2802,7 +3777,7 @@
2802
3777
  * app/core.rb, processor/command/set_subcmd/auto.rb,
2803
3778
  processor/command/set_subcmd/maxstring.rb,
2804
3779
  processor/command/set_subcmd/width.rb: maxstring.rb: dry code. More
2805
- is needed. width.rb: was buggy - should now work core.rb: add core
3780
+ is needed. width.rb: was buggy - should now work core.rb: add core
2806
3781
  event debug setting
2807
3782
 
2808
3783
  2009-12-07 rocky <rockyb@rubyforge.org>
@@ -2820,9 +3795,8 @@
2820
3795
 
2821
3796
  * lib/rbdbgr.rb,
2822
3797
  processor/command/set_subcmd/substitute_subcmd/string.rb: Make
2823
- debugger &block is less broken, or rather broken in another way.
2824
- Set substitute allows you to let it figure out what the iseq name
2825
- is.
3798
+ debugger &block is less broken, or rather broken in another way. Set
3799
+ substitute allows you to let it figure out what the iseq name is.
2826
3800
 
2827
3801
  2009-12-06 rocky <rockyb@rubyforge.org>
2828
3802
 
@@ -2878,9 +3852,10 @@
2878
3852
  test/unit/test-lib-brkpt.rb: lib/irb.rb -> lib/dbgr-irb.rb The name
2879
3853
  lib/irb.rb causes it to be seen in gem package and conflict with the
2880
3854
  real irb's irb.rb! For now rename. May however move everything
2881
- except rbdbgr.rb out of lib. rbdbgr.rb -> lib/rbdbgr.rb : irb wasn't finding "require 'rbdbgr'"
2882
- because rbdbgr seems to be expected to live in lib. Rakefile: Update homepage and make description different from
2883
- summary to keep rake happy.
3855
+ except rbdbgr.rb out of lib. rbdbgr.rb -> lib/rbdbgr.rb : irb
3856
+ wasn't finding "require 'rbdbgr'" because rbdbgr seems to be
3857
+ expected to live in lib. Rakefile: Update homepage and make
3858
+ description different from summary to keep rake happy.
2884
3859
 
2885
3860
  2009-12-06 rocky <rockyb@rubyforge.org>
2886
3861
 
@@ -2956,8 +3931,8 @@
2956
3931
  processor/command/set_subcmd/auto_subcmd/list.rb,
2957
3932
  processor/command/show_subcmd/auto_subcmd/list.rb,
2958
3933
  processor/main.rb, processor/mock.rb, test/functional/test-step.rb:
2959
- Add set/show auto list. In the process added pre-commands hook.
2960
- Pick up SHORT_HELP from help in subcommands.
3934
+ Add set/show auto list. In the process added pre-commands hook. Pick
3935
+ up SHORT_HELP from help in subcommands.
2961
3936
 
2962
3937
  2009-11-06 rocky <rockyb@rubyforge.org>
2963
3938
 
@@ -2985,7 +3960,7 @@
2985
3960
  processor/command/list.rb, processor/validate.rb,
2986
3961
  test/functional/test-break.rb, test/unit/test-cmd-break.rb: Add
2987
3962
  breakpoint indicators in "list" command. Show line number(s) when a
2988
- breakpoint just set. Revise listing to use containers, rather than
3963
+ breakpoint just set. Revise listing to use containers, rather than
2989
3964
  file names.
2990
3965
 
2991
3966
  2009-11-04 rocky <rockyb@rubyforge.org>
@@ -2996,8 +3971,20 @@
2996
3971
 
2997
3972
  2009-11-04 rocky <rockyb@rubyforge.org>
2998
3973
 
2999
- * : commit 560ef74dd49b8cb587b2e47ca81af82e956e406d Author: rocky
3000
- <rockyb@rubyforge.org> Date: Wed Nov 4 06:08:33 2009 -0500
3974
+ Merge branch 'master' of git@github.com:rocky/rbdbgr
3975
+
3976
+ 2009-11-04 rocky <rockyb@rubyforge.org>
3977
+
3978
+ * processor/command/base/subsubmgr.rb,
3979
+ processor/command/info_subcmd/registers.rb,
3980
+ processor/command/info_subcmd/registers_subcmd/helper.rb,
3981
+ processor/command/info_subcmd/registers_subcmd/lfp.rb,
3982
+ processor/command/info_subcmd/registers_subcmd/pc.rb,
3983
+ processor/command/info_subcmd/registers_subcmd/sp.rb,
3984
+ processor/validate.rb: subsubmgr.rb: Fix bug in "help command
3985
+ subcommand param". validate.rb: bug using wrong hash key.
3986
+ registers/*: longer help. lfp.rb: check range. I probably have
3987
+ indexing backwards and allow one too many. Perhaps more later.
3001
3988
 
3002
3989
  2009-11-02 R. Bernstein <rocky@gnu.org>
3003
3990
 
@@ -3027,8 +4014,8 @@
3027
4014
  processor/command/step.rb, processor/main.rb, processor/running.rb,
3028
4015
  profile/irbrc, test/functional/test-step.rb: Go over some stepping
3029
4016
  oddities and bugs. Add command NEED_RUNNING: start putting tracking
3030
- commands that need a running program. irb -d now sets global
3031
- $frame. Fix bug in "finish" command and "set debug skip" now works.
4017
+ commands that need a running program. irb -d now sets global $frame.
4018
+ Fix bug in "finish" command and "set debug skip" now works.
3032
4019
 
3033
4020
  2009-10-29 rocky <rockyb@rubyforge.org>
3034
4021
 
@@ -3065,8 +4052,8 @@
3065
4052
  emacs/rbdbg-var.el, emacs/rbdbgr-core.el,
3066
4053
  emacs/test/test-regexp.el, emacs/test/test-track.el, lib/brkpt.rb,
3067
4054
  rbdbgr.rb: emacs/*: start to separate buffer-local vars for the
3068
- process buffer from the buffer-local vars of the (top-level Ruby)
3069
- script buffer. reset: mostly small doc-like changes.
4055
+ process buffer from the buffer-local vars of the (top-level
4056
+ Ruby) script buffer. reset: mostly small doc-like changes.
3070
4057
 
3071
4058
  2009-10-26 rocky <rockyb@rubyforge.org>
3072
4059
 
@@ -3089,8 +4076,8 @@
3089
4076
 
3090
4077
  * emacs/rbdbg-track-mode.el, emacs/rbdbgr-core.el,
3091
4078
  emacs/rbdbgr-track-mode.el, processor/command/info_subcmd/iseq.rb:
3092
- iseq.rb: Show more information in "info seq". emacs/*: Key-bindings workaround in rbdbgr-track-mode and other
3093
- fixes.
4079
+ iseq.rb: Show more information in "info seq". emacs/*: Key-bindings
4080
+ workaround in rbdbgr-track-mode and other fixes.
3094
4081
 
3095
4082
  2009-10-25 rocky <rockyb@rubyforge.org>
3096
4083
 
@@ -3107,7 +4094,7 @@
3107
4094
  * processor/command/disassemble.rb,
3108
4095
  processor/command/info_subcmd/iseq.rb: iseq.rb: Show instruction
3109
4096
  sequence breakpoints disassemble.rb: short by default (option is now
3110
- "full") allow '.' for current instruction sequence.
4097
+ "full") allow '.' for current instruction sequence.
3111
4098
 
3112
4099
  2009-10-24 rocky <rockyb@rubyforge.org>
3113
4100
 
@@ -3144,13 +4131,14 @@
3144
4131
  processor/command/set_subcmd/substitute_subcmd/string.rb,
3145
4132
  processor/frame.rb, processor/location.rb, processor/main.rb,
3146
4133
  processor/validate.rb: Add "set substitute string" to map string
3147
- eval names into a (temporary) file. emacs: expand regexp to deal
4134
+ eval names into a (temporary) file. emacs: expand regexp to deal
3148
4135
  with "via" or "remap" strings.
3149
4136
 
3150
4137
  2009-10-23 R. Bernstein <rocky@gnu.org>
3151
4138
 
3152
4139
  * processor/command/info_subcmd/file.rb: Bug in running "info file"
3153
4140
 
4141
+
3154
4142
  2009-10-23 R. Bernstein <rocky@gnu.org>
3155
4143
 
3156
4144
  * processor/command/info_subcmd/iseq.rb,
@@ -3160,8 +4148,17 @@
3160
4148
 
3161
4149
  2009-10-23 R. Bernstein <rocky@gnu.org>
3162
4150
 
3163
- * : commit 97e43a889e41ba9838e763cd28e394ec7205e0af Author: R.
3164
- Bernstein <rocky@gnu.org> Date: Fri Oct 23 16:02:31 2009 -0400
4151
+ Merge branch 'master' of git@github.com:rocky/rbdbgr
4152
+
4153
+ 2009-10-23 R. Bernstein <rocky@gnu.org>
4154
+
4155
+ * processor/command/info_subcmd/registers_subcmd/lfp.rb,
4156
+ processor/command/info_subcmd/registers_subcmd/pc.rb,
4157
+ processor/command/info_subcmd/registers_subcmd/sp.rb,
4158
+ processor/command/set_subcmd/substitute.rb,
4159
+ processor/command/set_subcmd/substitute_subcmd/path.rb,
4160
+ processor/main.rb: Add gdb "set substitute path" in rudimentary
4161
+ form.
3165
4162
 
3166
4163
  2009-10-22 rocky <rockyb@rubyforge.org>
3167
4164
 
@@ -3173,7 +4170,7 @@
3173
4170
  processor/command/info_subcmd/file.rb, processor/main.rb: main.rb,
3174
4171
  file.rb: Remapping <internal:prelude> and more generally any file
3175
4172
  remapped shows up cmd.rb, file.rb: Show breakpoint numbers in the
3176
- way numbers are generally handled. in location line and has "info
4173
+ way numbers are generally handled. in location line and has "info
3177
4174
  file" properties shown.
3178
4175
 
3179
4176
  2009-10-22 rocky <rockyb@rubyforge.org>
@@ -3212,6 +4209,7 @@
3212
4209
  processor/main.rb, processor/validate.rb: Fix various bugs in/off of
3213
4210
  "disassemble" command, and showing internal debugger traceback, etc.
3214
4211
 
4212
+
3215
4213
  2009-10-20 rocky <rockyb@rubyforge.org>
3216
4214
 
3217
4215
  * processor/command/info_subcmd/registers_subcmd/lfp.rb,
@@ -3244,7 +4242,7 @@
3244
4242
  processor/command/where.rb, processor/default.rb, processor/main.rb:
3245
4243
  main.rb: Don't crap out on an unhandled exception in running a
3246
4244
  command. We now have enough of the debugger working where we can
3247
- dynamically investicagate and fix things. Add "set/show debug"
4245
+ dynamically investicagate and fix things. Add "set/show debug"
3248
4246
  subcommands for turning on/off internal debugger debugging.
3249
4247
 
3250
4248
  2009-10-20 rocky <rockyb@rubyforge.org>
@@ -3296,8 +4294,8 @@
3296
4294
 
3297
4295
  * processor/command/break.rb, processor/main.rb,
3298
4296
  test/functional/fn_helper.rb, test/functional/test-break.rb:
3299
- main.rb: Fix bug in "disable" command. break.rb: Canonicalize name
3300
- in container. test/* grow for testing breakpoints.
4297
+ main.rb: Fix bug in "disable" command. break.rb: Canonicalize name
4298
+ in container. test/* grow for testing breakpoints.
3301
4299
 
3302
4300
  2009-10-19 rocky <rockyb@rubyforge.org>
3303
4301
 
@@ -3315,7 +4313,7 @@
3315
4313
  processor/command/break.rb, processor/command/enable.rb,
3316
4314
  processor/running.rb: processor/command: add an "enable" command.
3317
4315
  processor/{breakpoint,running}.rb: move breakpoint code to a
3318
- separate file. processor/command/break.rb: category should be
4316
+ separate file. processor/command/break.rb: category should be
3319
4317
  "breakpoint", not "running" lib/brkpt.rb: add enabled=
3320
4318
 
3321
4319
  2009-10-19 R. Bernstein <rocky@gnu.org>
@@ -3334,7 +4332,7 @@
3334
4332
  processor/command/info_subcmd/file.rb,
3335
4333
  processor/command/info_subcmd/frame.rb,
3336
4334
  processor/command/info_subcmd/program.rb: command/info_sub/break.rb:
3337
- Add "info break" command. command/{break.rb,info_sub/program.rb}:
4335
+ Add "info break" command. command/{break.rb,info_sub/program.rb}:
3338
4336
  Use instruction sequence names to start to disambiguate locations.
3339
4337
  lib/break.rb: Add ignore field to breakpoint object.
3340
4338
  lib/brkptmgr.rb: add more of the useful Enumerable operators to
@@ -3379,8 +4377,8 @@
3379
4377
  processor/command/set_subcmd/auto_sub/irb.rb,
3380
4378
  processor/command/set_subcmd/auto_subcmd/eval.rb,
3381
4379
  processor/command/set_subcmd/auto_subcmd/irb.rb,
3382
- processor/command/show_subcmd/auto.rb: Add "info file" command. Fix
3383
- "set auto" subcommand. Remove extra \n in "List subcommands" help.
4380
+ processor/command/show_subcmd/auto.rb: Add "info file" command. Fix
4381
+ "set auto" subcommand. Remove extra \n in "List subcommands" help.
3384
4382
  Tidy up code more.
3385
4383
 
3386
4384
  2009-10-17 rocky <rockyb@rubyforge.org>
@@ -3392,14 +4390,14 @@
3392
4390
  processor/command/info_subcmd/registers.rb,
3393
4391
  processor/command/info_subcmd/return.rb, processor/main.rb,
3394
4392
  processor/mock.rb, processor/msg.rb, processor/running.rb,
3395
- test/unit/test-lib-brkptmgr.rb: Lots of little changes... main.rb:
4393
+ test/unit/test-lib-brkptmgr.rb: Lots of little changes... main.rb:
3396
4394
  Check breakpoint condition and find breakpoint command/info_subcmd:
3397
4395
  add PREFIX for future use command/info_subcmd/registers.rb: Minimum
3398
4396
  abbrev is now "reg" since there is a "return" command/break.rb: "b"
3399
4397
  is an alias for "break" lib/brkpt.rb: add enabled parameter, stay
3400
4398
  clear of name "binding" lib/brkptmgr.rb: add a "find" and "size"
3401
- commands, and access to list. command/*: complete I/O routine with
3402
- msg_nocr; DRY standalone code. running.rb: remove debug code.
4399
+ commands, and access to list. command/*: complete I/O routine with
4400
+ msg_nocr; DRY standalone code. running.rb: remove debug code.
3403
4401
 
3404
4402
  2009-10-17 rocky <rockyb@rubyforge.org>
3405
4403
 
@@ -3414,7 +4412,7 @@
3414
4412
  processor/command/show_subcmd/auto_subcmd/eval.rb,
3415
4413
  processor/command/show_subcmd/auto_subcmd/irb.rb,
3416
4414
  processor/running.rb: Add a minimal breakpoint command. Add some gem
3417
- install workarounds. Redmove need for short help constant in
4415
+ install workarounds. Redmove need for short help constant in
3418
4416
  subcommands.
3419
4417
 
3420
4418
  2009-10-17 rocky <rockyb@rubyforge.org>
@@ -3488,8 +4486,9 @@
3488
4486
  processor/command/base_subsubmgr.rb, processor/command/help.rb,
3489
4487
  processor/subcmd.rb: help.rb, base_submgr.rb: Allow regexp matching
3490
4488
  of command names for help listing. Idea courtesy of Michael Lord
3491
- Welles. base_subcmd.rb + above: DRY columnize code brkptmgr.rb: Fix stupid syntax bug subcmd.rb: lookup() add optional parameter to decide on whether to
3492
- lookup by regexp or not.
4489
+ Welles. base_subcmd.rb + above: DRY columnize code brkptmgr.rb:
4490
+ Fix stupid syntax bug subcmd.rb: lookup() add optional parameter to
4491
+ decide on whether to lookup by regexp or not.
3493
4492
 
3494
4493
  2009-10-17 rocky <rockyb@rubyforge.org>
3495
4494
 
@@ -3557,7 +4556,7 @@
3557
4556
  processor/command/info_subcmd/registers_subcmd/sp.rb,
3558
4557
  processor/command/show_subcmd/auto.rb, processor/default.rb,
3559
4558
  processor/msg.rb: complete "info registers", adding "info register
3560
- lfp". Tidy help * output. default.rb: add saferep to truncate long
4559
+ lfp". Tidy help * output. default.rb: add saferep to truncate long
3561
4560
  strings.
3562
4561
 
3563
4562
  2009-10-14 rocky <rockyb@rubyforge.org>
@@ -3579,8 +4578,8 @@
3579
4578
  processor/command/show_subcmd/auto_subcmd/irb.rb,
3580
4579
  processor/command/show_subcmd/autoeval.rb,
3581
4580
  processor/command/show_subcmd/autoirb.rb: sub commands of 'show
3582
- auto' works, more or less. Remove 'show autoeval' and 'show
3583
- autoirb' in favor of 'show auto eval' and 'show auto irb'.
4581
+ auto' works, more or less. Remove 'show autoeval' and 'show autoirb'
4582
+ in favor of 'show auto eval' and 'show auto irb'.
3584
4583
 
3585
4584
  2009-10-13 R. Bernstein <rocky@gnu.org>
3586
4585
 
@@ -3631,8 +4630,8 @@
3631
4630
  processor/command/info_subcmd/pc.rb,
3632
4631
  processor/command/info_subcmd/registers.rb: Add "info registers" in
3633
4632
  the spirit of gdb. Remove "info pc" as this is now covered by "info
3634
- registers". frame.rb: now shows: manditory parameters after
3635
- optional ones.
4633
+ registers". frame.rb: now shows: manditory parameters after optional
4634
+ ones.
3636
4635
 
3637
4636
  2009-09-30 rocky <rockyb@rubyforge.org>
3638
4637
 
@@ -3659,7 +4658,7 @@
3659
4658
  processor/command/info_subcmd/return.rb,
3660
4659
  processor/command/info_subcmd/sp.rb, test/functional/.gitignore,
3661
4660
  test/unit/test-cmd-kill.rb: pc.rb, sp.rb: add "info pc" and "info
3662
- sp" commands. info_subcmd/*.rb: remove SHORT_HELP which is set by
4661
+ sp" commands. info_subcmd/*.rb: remove SHORT_HELP which is set by
3663
4662
  base class.
3664
4663
 
3665
4664
  2009-09-29 rocky <rockyb@rubyforge.org>
@@ -3685,12 +4684,13 @@
3685
4684
 
3686
4685
  * test/functional/test-next.rb: Add "next" command functional test.
3687
4686
 
4687
+
3688
4688
  2009-09-27 rocky <rockyb@rubyforge.org>
3689
4689
 
3690
4690
  * lib/frame.rb, processor/command/finish.rb,
3691
4691
  processor/command/step.rb, processor/main.rb, processor/running.rb,
3692
4692
  test/functional/test-step.rb: Add "finish" command. Fix bugs in
3693
- stepping to specific events. Add event names for all events: add
4693
+ stepping to specific events. Add event names for all events: add
3694
4694
  switch, coverage and vm.
3695
4695
 
3696
4696
  2009-09-27 rocky <rockyb@rubyforge.org>
@@ -3702,14 +4702,14 @@
3702
4702
  * interface/base_intf.rb, interface/script.rb, interface/user.rb,
3703
4703
  io/input.rb, processor/command/list.rb, processor/main.rb,
3704
4704
  processor/validate.rb, rbdbgr.rb, test/functional/test-step.rb: Null
3705
- return on interactive input now uses last command. Various code
4705
+ return on interactive input now uses last command. Various code
3706
4706
  cleanups mostly on interfaces. More functional tests.
3707
4707
 
3708
4708
  2009-09-26 rocky <rockyb@rubyforge.org>
3709
4709
 
3710
4710
  * lib/file.rb, processor/command/list.rb, processor/main.rb,
3711
4711
  processor/validate.rb: List function-name works now. list file:line
3712
- works too. Don't show file text if there's nothing to show.
4712
+ works too. Don't show file text if there's nothing to show.
3713
4713
 
3714
4714
  2009-09-26 rocky <rockyb@rubyforge.org>
3715
4715
 
@@ -3719,7 +4719,7 @@
3719
4719
  bin/rbdbgr run.rb: Move Rbdbgr module to a module list.rb: bang on
3720
4720
  some more restart.rb: Add Ruby interpreter if $0 is not executable
3721
4721
  mock.rb: remove debug statement rbdbgr.rb: Add :set_restart option
3722
- which is less cumbersome than using :restart_argv
4722
+ which is less cumbersome than using :restart_argv
3723
4723
 
3724
4724
  2009-09-26 rocky <rockyb@rubyforge.org>
3725
4725
 
@@ -3732,7 +4732,7 @@
3732
4732
 
3733
4733
  * processor/command/info_subcmd/frame.rb, processor/frame.rb:
3734
4734
  processor/info_subcmd/frame.rb: DRY code processor/frame.rb:
3735
- offset2lines semantic change in rb-threadframe. reduce bogus
4735
+ offset2lines semantic change in rb-threadframe. reduce bogus
3736
4736
  behavior in standalone code.
3737
4737
 
3738
4738
  2009-09-26 rocky <rockyb@rubyforge.org>
@@ -3742,10 +4742,12 @@
3742
4742
  processor/mock.rb, processor/validate.rb,
3743
4743
  test/unit/test-proc-frame.rb, test/unit/test-proc-validate.rb:
3744
4744
  list.rb: Hammer on "list" command a little. Needs a lot more work
3745
- though. validate.rb: Use confirm from interface in command processor. defaults.rb: Add defaults for "basename" and "autolist" (neither is
3746
- setable/showable yet). mock.rb: Add Debugger::Core mock which reduces bogusness in some
3747
- unit tests (proc-validate, proc-frame) file.rb Speaking of bogusness, add parse location routine which
3748
- doesn't work yet.
4745
+ though. validate.rb: Use confirm from interface in command
4746
+ processor. defaults.rb: Add defaults for "basename" and "autolist"
4747
+ (neither is setable/showable yet). mock.rb: Add Debugger::Core mock
4748
+ which reduces bogusness in some unit tests (proc-validate,
4749
+ proc-frame) file.rb Speaking of bogusness, add parse location
4750
+ routine which doesn't work yet.
3749
4751
 
3750
4752
  2009-09-25 rocky <rockyb@rubyforge.org>
3751
4753
 
@@ -3777,7 +4779,8 @@
3777
4779
 
3778
4780
  * interface/base_intf.rb, test/functional/fn_helper.rb,
3779
4781
  test/functional/test-step.rb: base_intf.rb: use only I/O functions
3780
- we define. Was missing the newline. More work towards getting functional testing working.
4782
+ we define. Was missing the newline. More work towards getting
4783
+ functional testing working.
3781
4784
 
3782
4785
  2009-09-24 R. Bernstein <rocky@gnu.org>
3783
4786
 
@@ -3800,20 +4803,21 @@
3800
4803
  * io/input.rb, rbdbgr.rb, test/functional/fn_helper.rb,
3801
4804
  test/unit/test-intf-user.rb, test/unit/test-io-input.rb,
3802
4805
  test/unit/test-user.rb: input.rb: don't assume input has a tty?
3803
- method. rbdbgr.rb: Allow one to pass in the input and output
3804
- descriptors More and better unit tests.
4806
+ method. rbdbgr.rb: Allow one to pass in the input and output
4807
+ descriptors More and better unit tests.
3805
4808
 
3806
4809
  2009-09-23 R. Bernstein <rocky@gnu.org>
3807
4810
 
3808
4811
  * io/input.rb, test/unit/test-io-input.rb: :line_edit only works if
3809
- input is a tty. Add trivial unit test of io/input.
4812
+ input is a tty. Add trivial unit test of io/input.
3810
4813
 
3811
4814
  2009-09-23 R. Bernstein <rocky@gnu.org>
3812
4815
 
3813
4816
  * interface/script.rb, interface/user.rb, io/input.rb,
3814
4817
  io/string_array.rb, processor/main.rb, test/unit/test-user.rb: Hook
3815
4818
  user/script interfaces to use new IO-based io/input. string_array
3816
- now (probably) is usable. main.rb eof is on the interface's input, not the interface.
4819
+ now (probably) is usable. main.rb eof is on the interface's input,
4820
+ not the interface.
3817
4821
 
3818
4822
  2009-09-23 R. Bernstein <rocky@gnu.org>
3819
4823
 
@@ -3825,7 +4829,7 @@
3825
4829
 
3826
4830
  * interface/base_intf.rb, interface/script.rb, interface/user.rb,
3827
4831
  io/base_io.rb, io/input.rb, processor/main.rb: input.rb: closer to
3828
- being usuable. main.rb: Add end and unknown as other unmaskable
4832
+ being usuable. main.rb: Add end and unknown as other unmaskable
3829
4833
  events
3830
4834
 
3831
4835
  2009-09-23 rocky <rockyb@rubyforge.org>
@@ -3868,7 +4872,7 @@
3868
4872
  processor/command/source.rb, processor/command/step.rb,
3869
4873
  processor/command/up.rb, processor/command/where.rb,
3870
4874
  processor/mock.rb, processor/subcmd.rb: DRY code with respect to
3871
- mock setup. rake :check => :check:lib :check:commands, etc.
4875
+ mock setup. rake :check => :check:lib :check:commands, etc.
3872
4876
 
3873
4877
  2009-09-22 rocky <rockyb@rubyforge.org>
3874
4878
 
@@ -3877,16 +4881,19 @@
3877
4881
  processor/command/irb.rb, processor/command/up.rb,
3878
4882
  processor/command/where.rb, processor/frame.rb, processor/main.rb,
3879
4883
  processor/running.rb: Fix bugs in suffix handling for step/next
3880
- commands. "last position" includes the stack size. frame_setup()
3881
- can figure out the thread, so no need to pass that.
4884
+ commands. "last position" includes the stack size. frame_setup() can
4885
+ figure out the thread, so no need to pass that.
3882
4886
 
3883
4887
  2009-09-21 rocky <rockyb@rubyforge.org>
3884
4888
 
3885
4889
  * processor/command/set_subcmd/events.rb, processor/main.rb,
3886
4890
  processor/msg.rb: Correct process_command_and_quit? to do the right
3887
4891
  thing on interface EOF. Also, it now understands comments and how
3888
- to repeat the last command on the empty string. This removes bugs in stepping on a "source" command and the
3889
- duplicate stepping when leaving irb. events.rb: allow commas to end event names, i.e. set events line, call, return as well as: set events line call return
4892
+ to repeat the last command on the empty string. This removes bugs
4893
+ in stepping on a "source" command and the duplicate stepping when
4894
+ leaving irb. events.rb: allow commas to end event names, i.e. set
4895
+ events line, call, return as well as: set events line call return
4896
+
3890
4897
 
3891
4898
  2009-09-21 R. Bernstein <rocky@gnu.org>
3892
4899
 
@@ -3906,7 +4913,10 @@
3906
4913
  processor/mock.rb, processor/running.rb, rbdbgr.rb: Add custom irb
3907
4914
  profile for rbdbgr irb sessions. Running processor/command/irb.rb
3908
4915
  now runs irb which can be used to test the custom profile. Added irb
3909
- command 'n' for next. DRY step/next suffix detection code. Set defaults more for normal users: set autoeval on set events: remove instruction stepping set different on Did I mention that "next" now works?
4916
+ command 'n' for next. DRY step/next suffix detection code. Set
4917
+ defaults more for normal users: set autoeval on set events:
4918
+ remove instruction stepping set different on Did I mention that
4919
+ "next" now works?
3910
4920
 
3911
4921
  2009-09-20 rocky <rockyb@rubyforge.org>
3912
4922
 
@@ -3925,7 +4935,8 @@
3925
4935
  * processor/command/base_cmd.rb, processor/command/source.rb,
3926
4936
  processor/command/step.rb, processor/main.rb, processor/mock.rb,
3927
4937
  processor/msg.rb, rbdbgr.rb: Pretty close to having a working
3928
- "source" command - needs a little more work on eof condition. To that end the, interface is now an array of interfaces.
4938
+ "source" command - needs a little more work on eof condition. To
4939
+ that end the, interface is now an array of interfaces.
3929
4940
 
3930
4941
  2009-09-18 rocky <rockyb@rubyforge.org>
3931
4942
 
@@ -3957,6 +4968,7 @@
3957
4968
  processor/running.rb: Add set/show subcommand "set autoirb".
3958
4969
  Separate "running"-category code from the various debugger commands.
3959
4970
 
4971
+
3960
4972
  2009-09-17 rockyb <rocky@gnu.org>
3961
4973
 
3962
4974
  * bin/rbdbgr, lib/irb.rb: Use excluded correctly. Disable
@@ -4035,7 +5047,7 @@
4035
5047
  processor/command/set_subcmd/traceset.rb,
4036
5048
  processor/command/show_subcmd/events.rb,
4037
5049
  processor/command/show_subcmd/traceset.rb: set/show traceset ->
4038
- set/show event info line -> info frame Minor other corrections.
5050
+ set/show event info line -> info frame Minor other corrections.
4039
5051
 
4040
5052
  2009-09-12 rocky <rockyb@rubyforge.org>
4041
5053
 
@@ -4070,9 +5082,9 @@
4070
5082
  processor/command/step.rb, processor/default.rb, processor/main.rb,
4071
5083
  test/unit/test-bin-rbdbgr.rb, test/unit/test-cmd-help.rb,
4072
5084
  test/unit/test-cmd-step.rb: Add ability to step by different
4073
- position: set/show different and s[tep]{+,-}. Add unit test for step command which in the process found a bug in
4074
- handling "step" as well as showing how to improve unit test for the
4075
- help command.
5085
+ position: set/show different and s[tep]{+,-}. Add unit test for
5086
+ step command which in the process found a bug in handling "step" as
5087
+ well as showing how to improve unit test for the help command.
4076
5088
 
4077
5089
  2009-09-10 R. Bernstein <rocky@gnu.org>
4078
5090
 
@@ -4091,7 +5103,7 @@
4091
5103
  2009-09-09 rocky <rockyb@rubyforge.org>
4092
5104
 
4093
5105
  * Rakefile, bin/rbdbgr: rbdbgr: Set restart args correclty. I have a
4094
- feeling I will be using this a lot. Rakefile: start work to make a
5106
+ feeling I will be using this a lot. Rakefile: start work to make a
4095
5107
  gem. Doesn't work yet though.
4096
5108
 
4097
5109
  2009-09-09 rocky <rockyb@rubyforge.org>
@@ -4101,17 +5113,20 @@
4101
5113
  processor/command/base_subsubmgr.rb,
4102
5114
  processor/command/show_subcmd/trace.rb, processor/main.rb,
4103
5115
  processor/mock.rb: rbdbgr: save/set/restore $0. Exclude
4104
- debug_program. Pass in debugger object. Try using $rbdbgr for
4105
- global debugger variable. Start sub commands of sub commands. Not working yet. Define/use some processor attr_reader's to remove ugly
4106
- instance_variable_get's.
5116
+ debug_program. Pass in debugger object. Try using $rbdbgr
5117
+ for global debugger variable. Start sub commands of sub commands.
5118
+ Not working yet. Define/use some processor attr_reader's to remove
5119
+ ugly instance_variable_get's.
4107
5120
 
4108
5121
  2009-09-09 R. Bernstein <rocky@gnu.org>
4109
5122
 
4110
5123
  * Rakefile, processor/command/base_subcmd.rb,
4111
5124
  processor/command/base_submgr.rb, processor/command/kill.rb,
4112
5125
  processor/mock.rb, processor/msg.rb, processor/subcmd.rb, rbdbgr.rb:
4113
- Start using user inteface from command processor. Add rake tasks to be able to run all pieces of the debugger
4114
- individually (tasks check:lib, check:commands, and check:processor). Kill deal with failed kill via Errno::ESRCH.
5126
+ Start using user inteface from command processor. Add rake tasks to
5127
+ be able to run all pieces of the debugger individually (tasks
5128
+ check:lib, check:commands, and check:processor). Kill deal with
5129
+ failed kill via Errno::ESRCH.
4115
5130
 
4116
5131
  2009-09-09 rocky <rockyb@rubyforge.org>
4117
5132
 
@@ -4125,8 +5140,9 @@
4125
5140
  2009-09-08 rocky <rockyb@rubyforge.org>
4126
5141
 
4127
5142
  * bin/rbdbgr, interface/base_intf.rb, interface/user.rb:
4128
- interface/*: DRY code a little bin/rbdbgr: Scope variables better, make routines in rbdbgr more
4129
- unit testable partially by allowing rbdbgr to be loaded/required.
5143
+ interface/*: DRY code a little bin/rbdbgr: Scope variables better,
5144
+ make routines in rbdbgr more unit testable partially by allowing
5145
+ rbdbgr to be loaded/required.
4130
5146
 
4131
5147
  2009-09-08 R. Bernstein <rocky@gnu.org>
4132
5148
 
@@ -4136,8 +5152,11 @@
4136
5152
 
4137
5153
  2009-09-08 rocky <rockyb@rubyforge.org>
4138
5154
 
4139
- * : commit 1920a02cb99f31db9052d194d711d1e0df8670d8 Author: rocky
4140
- <rockyb@rubyforge.org> Date: Tue Sep 8 08:02:55 2009 -0400
5155
+ Merge branch 'master' of git@github.com:rocky/rbdbgr
5156
+
5157
+ 2009-09-08 rocky <rockyb@rubyforge.org>
5158
+
5159
+ * Rakefile: Default task for now is test.
4141
5160
 
4142
5161
  2009-09-08 rocky <rockyb@rubyforge.org>
4143
5162
 
@@ -4289,8 +5308,8 @@
4289
5308
  * emacs/rbdbg-file.el, emacs/rbdbg-loc.el, emacs/rbdbg-lochist.el,
4290
5309
  emacs/rbdbg-track.el, emacs/test/test-loc.el: Pretty much a working
4291
5310
  comint hook. I can't believe how something this simple was made so
4292
- complicated. And we don't need no stinking buffer in a location object - An Emacs
4293
- mark contains a reference to a buffer.
5311
+ complicated. And we don't need no stinking buffer in a location
5312
+ object - An Emacs mark contains a reference to a buffer.
4294
5313
 
4295
5314
  2009-08-25 rockyb <rocky@gnu.org>
4296
5315
 
@@ -4327,7 +5346,8 @@
4327
5346
  emacs/rbdbg-lochist.el, emacs/rbdbg-locring.el,
4328
5347
  emacs/test/.gitignore, emacs/test/behave.el,
4329
5348
  emacs/test/test-loc.el, emacs/test/test-locring.el: Start rewriting
4330
- Emacs/Debugger interaction code. From scratch. This doesn't do anything useful yet.
5349
+ Emacs/Debugger interaction code. From scratch. This doesn't do
5350
+ anything useful yet.
4331
5351
 
4332
5352
  2009-08-23 rocky <rockyb@rubyforge.org>
4333
5353
 
@@ -4354,10 +5374,11 @@
4354
5374
  processor/command/show_subcmd/traceset.rb,
4355
5375
  processor/command/show_subcmd/width.rb, processor/command/step.rb,
4356
5376
  processor/command/up.rb, processor/command/where.rb,
4357
- processor/mock.rb, rbdbgr.rb: Add a "restart" command. We can now debug debugger commands; debugger writers: eat your heart
4358
- out! DRY debugger-command demo code by putting more of the boilerplate
4359
- code into mock.rb More demoing done added through the advanced magic
4360
- of loops.
5377
+ processor/mock.rb, rbdbgr.rb: Add a "restart" command. We can now
5378
+ debug debugger commands; debugger writers: eat your heart out! DRY
5379
+ debugger-command demo code by putting more of the boilerplate code
5380
+ into mock.rb More demoing done added through the advanced magic of
5381
+ loops.
4361
5382
 
4362
5383
  2009-08-21 rocky <rockyb@rubyforge.org>
4363
5384
 
@@ -4371,8 +5392,8 @@
4371
5392
 
4372
5393
  * lib/core.rb, processor/command/disassemble.rb, processor/main.rb:
4373
5394
  core.rb: trace vm instructions - Yeah baby! disassemble.rb: show
4374
- disassembly for *anything* that responds to disasm better error
4375
- message for being in C functions. main.rb: add more even icons and
5395
+ disassembly for *anything* that responds to disasm better error
5396
+ message for being in C functions. main.rb: add more even icons and
4376
5397
  show even when we don't have an icon.
4377
5398
 
4378
5399
  2009-08-21 R. Bernstein <rocky@gnu.org>
@@ -4386,8 +5407,12 @@
4386
5407
 
4387
5408
  2009-08-21 R. Bernstein <rocky@gnu.org>
4388
5409
 
4389
- * : commit 3696fa2f4dbc70e7a81e12dc5194d77208bb3de6 Author: R.
4390
- Bernstein <rocky@gnu.org> Date: Fri Aug 21 09:20:29 2009 -0400
5410
+ Merge branch 'master' of git@github.com:rocky/rbdbgr
5411
+
5412
+ 2009-08-21 R. Bernstein <rocky@gnu.org>
5413
+
5414
+ * lib/core.rb, processor/main.rb, rbdbgr.rb: Add more icons. And a
5415
+ class test.
4391
5416
 
4392
5417
  2009-08-20 rocky <rockyb@rubyforge.org>
4393
5418
 
@@ -4399,7 +5424,7 @@
4399
5424
 
4400
5425
  * lib/core.rb, rbdbgr.rb: Add event after debugger-call debugging.
4401
5426
  Don't show stopping points inside debugger method for when
4402
- :immediate => true It's almost looking like a real debugger.
5427
+ :immediate => true It's almost looking like a real debugger.
4403
5428
 
4404
5429
  2009-08-18 rocky <rockyb@rubyforge.org>
4405
5430
 
@@ -4411,6 +5436,7 @@
4411
5436
 
4412
5437
  * processor/command/step.rb: Add step command - this time, for sure!
4413
5438
 
5439
+
4414
5440
  2009-08-18 rocky <rockyb@rubyforge.org>
4415
5441
 
4416
5442
  * lib/core.rb, processor/command/continue.rb,
@@ -4483,7 +5509,7 @@
4483
5509
  processor/msg.rb, processor/validate.rb, rbdbgr.rb,
4484
5510
  test/unit/test-proc-validate.rb: Add a 'kill' command - don't know
4485
5511
  how I lived this long without it! Add confirm method. Use full
4486
- sentences in command messages. Start testing validation routines.
5512
+ sentences in command messages. Start testing validation routines.
4487
5513
  Nuke trace hook until I figure out the garbage collection segv. I'll
4488
5514
  be back!
4489
5515
 
@@ -4499,8 +5525,14 @@
4499
5525
 
4500
5526
  2009-08-08 rocky <rockyb@rubyforge.org>
4501
5527
 
4502
- * : commit 0fedb641a33656b55f2020340f21872a3160c529 Author: rocky
4503
- <rockyb@rubyforge.org> Date: Wed Aug 12 20:22:52 2009 -0400
5528
+ Merge branch 'master' of git@github.com:rocky/rbdbgr Conflicts:
5529
+ processor/main.rb Conflicts: processor/main.rb
5530
+
5531
+ 2009-08-12 rocky <rockyb@rubyforge.org>
5532
+
5533
+ * processor/command/exit.rb, processor/command/help.rb,
5534
+ processor/command/where.rb, processor/main.rb,
5535
+ test/unit/test-proc-main.rb: I hate conflicted merges
4504
5536
 
4505
5537
  2009-08-08 rocky <rockyb@rubyforge.org>
4506
5538
 
@@ -4510,8 +5542,15 @@
4510
5542
 
4511
5543
  2009-08-08 rocky <rockyb@rubyforge.org>
4512
5544
 
4513
- * : commit cdcfba71a1e69d3158faa475f4f616287bb2afb3 Author: R.
4514
- Bernstein <rocky@gnu.org> Date: Wed Aug 12 13:06:18 2009 -0400
5545
+ Merge branch 'master' of git@github.com:rocky/rbdbgr Conflicts:
5546
+ processor/command/exit.rb processor/command/help.rb
5547
+ processor/command/where.rb processor/main.rb
5548
+ test/unit/test-proc-main.rb
5549
+
5550
+ 2009-08-12 R. Bernstein <rocky@gnu.org>
5551
+
5552
+ * processor/command/base_subcmd.rb: Playing switch-board operator.
5553
+ You know, delegation not inheritance
4515
5554
 
4516
5555
  2009-08-12 rockyb <rocky@gnu.org>
4517
5556
 
@@ -4551,7 +5590,7 @@
4551
5590
  processor/command/set_subcmd/width.rb,
4552
5591
  processor/command/show_subcmd/.gitignore, processor/main.rb:
4553
5592
  Debugger::Subcommand is a subclass of Debugger::Command - DRYs code
4554
- a little bit. Add undefined command message used when set autoeval
5593
+ a little bit. Add undefined command message used when set autoeval
4555
5594
  is off.
4556
5595
 
4557
5596
  2009-08-08 rocky <rockyb@rubyforge.org>
@@ -4655,7 +5694,7 @@
4655
5694
  processor/main.rb, processor/mock.rb, rbdbgr.rb,
4656
5695
  test/unit/test-cmd-help.rb, test/unit/test-cmdproc.rb,
4657
5696
  test/unit/test-proc-main.rb: Separate Debugger, Debugger::Core and
4658
- Debugger::CmdProcessor settings. Fix bugs in "where" command. Add
5697
+ Debugger::CmdProcessor settings. Fix bugs in "where" command. Add
4659
5698
  ruby-debug stack_trace_on_error option.
4660
5699
 
4661
5700
  2009-08-05 rocky <rockyb@rubyforge.org>
@@ -4665,8 +5704,10 @@
4665
5704
  processor/command/where.rb, processor/mock.rb,
4666
5705
  processor/validate.rb, rbdbgr.rb, test/unit/test-proc-frame.rb: Add
4667
5706
  access to (top-)level debugger settings - help uses "width" setting
4668
- of this now. Start a mock Debugger to help runing/testing individual commands
4669
- standalone. Fix bugs in get_int of validate. "where" now sets a max int value. Probably some other things as well. Whew.
5707
+ of this now. Start a mock Debugger to help runing/testing
5708
+ individual commands standalone. Fix bugs in get_int of validate.
5709
+ "where" now sets a max int value. Probably some other things as
5710
+ well. Whew.
4670
5711
 
4671
5712
  2009-08-04 rocky <rockyb@rubyforge.org>
4672
5713
 
@@ -4681,7 +5722,7 @@
4681
5722
  processor/command/help.rb, processor/command/up.rb,
4682
5723
  processor/command/where.rb: API change requires that we can no
4683
5724
  longer create a Debugger::Core object without a Debugger object.
4684
- Adjust command standalone demo for this. Todo: create a common mock
5725
+ Adjust command standalone demo for this. Todo: create a common mock
4685
5726
  helper module.
4686
5727
 
4687
5728
  2009-08-04 rocky <rockyb@rubyforge.org>
@@ -4691,8 +5732,9 @@
4691
5732
  processor/frame.rb, rbdbgr.rb, test/unit/test-cmd-help.rb,
4692
5733
  test/unit/test-cmdproc.rb, test/unit/test-proc-frame.rb: Bug fix for
4693
5734
  negative positioning in frame command. help doc corrections in
4694
- up/down. Start adding debugger settings. In doing so we also start start
4695
- linking together core, command_processor and debugger objects.
5735
+ up/down. Start adding debugger settings. In doing so we also start
5736
+ start linking together core, command_processor and debugger objects.
5737
+
4696
5738
 
4697
5739
  2009-08-03 rocky <rockyb@rubyforge.org>
4698
5740
 
@@ -4754,7 +5796,8 @@
4754
5796
  2009-07-30 rocky <rockyb@rubyforge.org>
4755
5797
 
4756
5798
  * lib/frame.rb: Don't use ThreadFrame#caller_method but
4757
- eval('self.class', frame.binding) instead. Add stack frame numbers to stack listing.
5799
+ eval('self.class', frame.binding) instead. Add stack frame numbers
5800
+ to stack listing.
4758
5801
 
4759
5802
  2009-07-28 rocky <rockyb@rubyforge.org>
4760
5803
 
@@ -4781,7 +5824,7 @@
4781
5824
 
4782
5825
  * processor/cmdproc.rb, processor/command/help.rb,
4783
5826
  processor/command/where.rb: Get "where" command to a point where it
4784
- is minimally useful. Start "help" command.
5827
+ is minimally useful. Start "help" command.
4785
5828
 
4786
5829
  2009-07-25 rocky <rockyb@rubyforge.org>
4787
5830
 
@@ -4810,10 +5853,10 @@
4810
5853
  * lib/core.rb, lib/frame.rb, lib/stack.rb, processor/cmdproc.rb,
4811
5854
  processor/command/base_cmd.rb, processor/command/exit.rb,
4812
5855
  processor/command/where.rb, rbdbgr.rb: where.rb: now to the state
4813
- where it does something remotely useful. process_command_and_quit?
5856
+ where it does something remotely useful. process_command_and_quit?
4814
5857
  doesn't try to run a comand after running it cmdproc.rb: set up
4815
- access from commmand to core and itself. rbdbgr.rb: add debugger()
4816
- method. exit.rb: fix bug in calling exit without args.
5858
+ access from commmand to core and itself. rbdbgr.rb: add debugger()
5859
+ method. exit.rb: fix bug in calling exit without args.
4817
5860
 
4818
5861
  2009-07-18 rocky <rockyb@rubyforge.org>
4819
5862
 
@@ -4878,3 +5921,4 @@
4878
5921
 
4879
5922
  * Baby steps toward a real debugger. Hah - Florian, I beat you to it!
4880
5923
 
5924
+