trepanning 0.1.6 → 1.93.32

Sign up to get free protection for your applications and to get access to all the features.
Files changed (113) hide show
  1. data/COPYING +57 -0
  2. data/ChangeLog +585 -736
  3. data/NEWS +26 -12
  4. data/README.md +62 -0
  5. data/Rakefile +15 -9
  6. data/app/breakpoint.rb +11 -12
  7. data/app/complete.rb +14 -14
  8. data/app/core.rb +34 -30
  9. data/app/default.rb +8 -7
  10. data/app/markdown.rb +191 -0
  11. data/app/options.rb +104 -99
  12. data/app/run.rb +9 -1
  13. data/app/util.rb +7 -7
  14. data/bin/trepan +7 -7
  15. data/interface.rb +0 -4
  16. data/interface/user.rb +11 -11
  17. data/io/input.rb +13 -13
  18. data/lib/trepanning.rb +30 -29
  19. data/processor.rb +40 -40
  20. data/processor/command.rb +13 -9
  21. data/processor/command/alias.rb +21 -15
  22. data/processor/command/backtrace.rb +27 -19
  23. data/processor/command/break.rb +24 -21
  24. data/processor/command/complete.rb +5 -2
  25. data/processor/command/condition.rb +14 -9
  26. data/processor/command/debug.rb +8 -8
  27. data/processor/command/down.rb +6 -6
  28. data/processor/command/edit.rb +4 -0
  29. data/processor/command/eval.rb +2 -2
  30. data/processor/command/exit.rb +12 -9
  31. data/processor/command/finish.rb +25 -23
  32. data/processor/command/frame.rb +30 -26
  33. data/processor/command/help.rb +203 -185
  34. data/processor/command/help/{command.txt → command.md} +21 -18
  35. data/processor/command/help/examples.md +20 -0
  36. data/processor/command/help/filename.md +46 -0
  37. data/processor/command/help/location.md +34 -0
  38. data/processor/command/help/suffixes.md +19 -0
  39. data/processor/command/info.rb +6 -4
  40. data/processor/command/info_subcmd/breakpoints.rb +13 -13
  41. data/processor/command/info_subcmd/files.rb +35 -31
  42. data/processor/command/info_subcmd/frame.rb +82 -33
  43. data/processor/command/info_subcmd/macro.rb +1 -1
  44. data/processor/command/info_subcmd/program.rb +8 -5
  45. data/processor/command/info_subcmd/registers.rb +15 -13
  46. data/processor/command/kill.rb +23 -17
  47. data/processor/command/list.rb +63 -56
  48. data/processor/command/macro.rb +45 -28
  49. data/processor/command/next.rb +29 -23
  50. data/processor/command/pp.rb +11 -9
  51. data/processor/command/pr.rb +10 -8
  52. data/processor/command/ps.rb +5 -5
  53. data/processor/command/quit.rb +24 -17
  54. data/processor/command/raise.rb +6 -6
  55. data/processor/command/reload.rb +9 -2
  56. data/processor/command/reload_subcmd/command.rb +4 -4
  57. data/processor/command/restart.rb +9 -4
  58. data/processor/command/save.rb +9 -9
  59. data/processor/command/server.rb +18 -17
  60. data/processor/command/set.rb +8 -6
  61. data/processor/command/set_subcmd/confirm.rb +15 -2
  62. data/processor/command/set_subcmd/different.rb +7 -5
  63. data/processor/command/set_subcmd/highlight.rb +14 -3
  64. data/processor/command/set_subcmd/pc.rb +62 -0
  65. data/processor/command/set_subcmd/sp.rb +8 -2
  66. data/processor/command/shell.rb +25 -23
  67. data/processor/command/show.rb +9 -7
  68. data/processor/command/show_subcmd/confirm.rb +12 -1
  69. data/processor/command/show_subcmd/highlight.rb +13 -3
  70. data/processor/command/source.rb +27 -26
  71. data/processor/command/step.rb +52 -43
  72. data/processor/command/tbreak.rb +9 -4
  73. data/processor/command/unalias.rb +9 -7
  74. data/processor/command/undisplay.rb +11 -7
  75. data/processor/command/up.rb +18 -13
  76. data/processor/command/watchg.rb +20 -17
  77. data/processor/complete.rb +120 -0
  78. data/processor/default.rb +47 -43
  79. data/processor/list.rb +23 -6
  80. data/processor/load_cmds.rb +25 -105
  81. data/processor/location.rb +104 -96
  82. data/processor/mock.rb +12 -12
  83. data/processor/msg.rb +61 -52
  84. data/processor/validate.rb +36 -27
  85. data/test/data/fname-with-blank.right +0 -1
  86. data/test/data/trace-mingw.right +28 -0
  87. data/test/data/trace.right +0 -2
  88. data/test/functional/test-raise.rb +3 -0
  89. data/test/integration/helper.rb +16 -16
  90. data/test/integration/test-debugger-stop.rb +8 -2
  91. data/test/integration/test-quit.rb +16 -15
  92. data/test/integration/test-trace.rb +19 -10
  93. data/test/unit/cmd-helper.rb +4 -1
  94. data/test/unit/test-app-complete.rb +3 -1
  95. data/test/unit/test-app-options.rb +7 -1
  96. data/test/unit/test-app-run.rb +9 -1
  97. data/test/unit/test-cmd-alias.rb +1 -1
  98. data/test/unit/test-cmd-edit.rb +2 -0
  99. data/test/unit/test-cmd-help.rb +10 -5
  100. data/test/unit/test-cmd-parse_list_cmd.rb +3 -3
  101. data/test/unit/test-completion.rb +2 -2
  102. data/test/unit/test-proc-default.rb +34 -0
  103. data/trepanning.gemspec +15 -14
  104. metadata +70 -44
  105. data/README.textile +0 -50
  106. data/processor/command/help/examples.txt +0 -16
  107. data/processor/command/help/filename.txt +0 -40
  108. data/processor/command/help/location.txt +0 -37
  109. data/processor/command/help/suffixes.txt +0 -17
  110. data/processor/command/info_subcmd/registers_subcmd/dfp.rb +0 -28
  111. data/processor/command/info_subcmd/registers_subcmd/lfp.rb +0 -47
  112. data/processor/command/nocache.rb +0 -32
  113. data/processor/command/parsetree.rb +0 -56
data/COPYING ADDED
@@ -0,0 +1,57 @@
1
+ Columnize is copyrighted free software by Rocky Bernstein <rocky@rubyforge.org>.
2
+
3
+ You can redistribute it and/or modify it under either the terms of the GPL
4
+ version 2, or the conditions below:
5
+
6
+ 1. You may make and give away verbatim copies of the source form of the
7
+ software without restriction, provided that you duplicate all of the
8
+ original copyright notices and associated disclaimers.
9
+
10
+ 2. You may modify your copy of the software in any way, provided that
11
+ you do at least ONE of the following:
12
+
13
+ a) place your modifications in the Public Domain or otherwise
14
+ make them Freely Available, such as by posting said
15
+ modifications to Usenet or an equivalent medium, or by allowing
16
+ the author to include your modifications in the software.
17
+
18
+ b) use the modified software only within your corporation or
19
+ organization.
20
+
21
+ c) give non-standard binaries non-standard names, with
22
+ instructions on where to get the original software distribution.
23
+
24
+ d) make other distribution arrangements with the author.
25
+
26
+ 3. You may distribute the software in object code or binary form,
27
+ provided that you do at least ONE of the following:
28
+
29
+ a) distribute the binaries and library files of the software,
30
+ together with instructions (in the manual page or equivalent)
31
+ on where to get the original distribution.
32
+
33
+ b) accompany the distribution with the machine-readable source of
34
+ the software.
35
+
36
+ c) give non-standard binaries non-standard names, with
37
+ instructions on where to get the original software distribution.
38
+
39
+ d) make other distribution arrangements with the author.
40
+
41
+ 4. You may modify and include the part of the software into any other
42
+ software (possibly commercial). But some files in the distribution
43
+ are not written by the author, so that they are not under these terms.
44
+
45
+ For the list of those files and their copying conditions, see the
46
+ file LEGAL.
47
+
48
+ 5. The scripts and library files supplied as input to or produced as
49
+ output from the software do not automatically fall under the
50
+ copyright of the software, but belong to whomever generated them,
51
+ and may be sold commercially, and may be aggregated with this
52
+ software.
53
+
54
+ 6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
55
+ IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
56
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
57
+ PURPOSE.
data/ChangeLog CHANGED
@@ -1,6 +1,276 @@
1
+ 2015-03-08 rocky <rockyb@rubyforge.org>
2
+
3
+ * NEWS, app/breakpoint.rb, app/options.rb, trepanning.gemspec: Get
4
+ ready for release 1.93.32
5
+
6
+ 2015-03-08 rocky <rockyb@rubyforge.org>
7
+
8
+ * ChangeLog, NEWS, app/options.rb, trepanning.gemspec: Get ready for
9
+ release 1.93.31
10
+
11
+ 2015-03-08 rocky <rockyb@rubyforge.org>
12
+
13
+ * processor/command/restart.rb,
14
+ processor/command/set_subcmd/confirm.rb,
15
+ processor/command/set_subcmd/highlight.rb,
16
+ processor/command/show_subcmd/confirm.rb,
17
+ processor/command/show_subcmd/highlight.rb: More markdown doc
18
+
19
+ 2015-03-08 rocky <rockyb@rubyforge.org>
20
+
21
+ * trepanning.gemspec: Drop threadframe dependency - it's baked into
22
+ Ruby now
23
+
24
+ 2015-03-07 rocky <rockyb@rubyforge.org>
25
+
26
+ * processor/command/info_subcmd/program.rb, processor/location.rb:
27
+ If an exception is non-local, tyr to detect that.
28
+
29
+ 2015-03-06 rocky <rockyb@rubyforge.org>
30
+
31
+ * processor/command/info_subcmd/frame.rb: Guard against invalid
32
+ frame in "info frame" Conflicts: processor/command/info_subcmd/frame.rb
33
+
34
+ 2015-03-06 rocky <rockyb@rubyforge.org>
35
+
36
+ * app/options.rb, processor/command/frame.rb,
37
+ processor/command/info_subcmd/breakpoints.rb,
38
+ processor/command/info_subcmd/files.rb,
39
+ processor/command/info_subcmd/frame.rb,
40
+ processor/command/info_subcmd/registers.rb,
41
+ processor/command/info_subcmd/registers_subcmd/dfp.rb,
42
+ processor/command/info_subcmd/registers_subcmd/lfp.rb,
43
+ processor/command/reload.rb,
44
+ processor/command/reload_subcmd/command.rb,
45
+ processor/command/set_subcmd/different.rb: More markdown doc. Bump
46
+ version
47
+
48
+ 2015-03-06 rocky <rockyb@rubyforge.org>
49
+
50
+ * ChangeLog, NEWS, app/options.rb, processor/command/exit.rb,
51
+ processor/command/finish.rb, trepanning.gemspec: Get ready for
52
+ release 1.93.30
53
+
54
+ 2015-03-05 rocky <rockyb@rubyforge.org>
55
+
56
+ * Rakefile, trepanning.gemspec: Bang on 1.9.3 packaging a little.
57
+
58
+ 2015-03-05 rocky <rockyb@rubyforge.org>
59
+
60
+ * processor/command/step.rb: Markdown help for "step" command
61
+
62
+ 2015-03-05 rocky <rockyb@rubyforge.org>
63
+
64
+ * processor/command/debug.rb, processor/command/macro.rb,
65
+ processor/command/raise.rb, processor/command/source.rb,
66
+ processor/command/step.rb, test/integration/test-quit.rb: More
67
+ command markdown. Fix "debug" command.
68
+
69
+ 2015-03-05 rocky <rockyb@rubyforge.org>
70
+
71
+ * processor/command/alias.rb, processor/command/backtrace.rb,
72
+ processor/command/complete.rb, processor/command/condition.rb:
73
+ Markdown help for more commands.
74
+
75
+ 2015-03-05 rocky <rockyb@rubyforge.org>
76
+
77
+ * bin/trepan, lib/trepanning.rb, test/data/trace.right,
78
+ test/integration/test-trace.rb: basename optionfix. Sync with 2.1
79
+
80
+ 2015-03-04 rocky <rockyb@rubyforge.org>
81
+
82
+ * app/default.rb, app/options.rb, lib/trepanning.rb, processor.rb,
83
+ test/integration/helper.rb, test/integration/test-trace.rb: Sync
84
+ with 2.1
85
+
86
+ 2015-02-02 rocky <rockyb@rubyforge.org>
87
+
88
+ * app/default.rb, app/options.rb, processor.rb,
89
+ processor/command/alias.rb, processor/command/break.rb,
90
+ processor/command/show.rb, processor/command/source.rb,
91
+ processor/command/tbreak.rb, processor/command/undisplay.rb,
92
+ processor/command/watchg.rb, processor/default.rb: Finish adding
93
+ markdown for commands. Turn highlight on by default. Conflicts: app/default.rb processor.rb processor/command/alias.rb processor/command/break.rb processor/default.rb
94
+
95
+ 2015-03-04 rocky <rockyb@rubyforge.org>
96
+
97
+ * processor/command/help.rb, processor/command/unalias.rb,
98
+ processor/mock.rb, processor/msg.rb, test/unit/cmd-helper.rb,
99
+ test/unit/test-cmd-help.rb: Markdown fy
100
+
101
+ 2015-02-02 rocky <rockyb@rubyforge.org>
102
+
103
+ * processor/command/help.rb, processor/command/info.rb,
104
+ processor/command/kill.rb, processor/command/list.rb,
105
+ processor/command/next.rb, processor/command/nocache.rb,
106
+ processor/command/parsetree.rb, processor/command/pp.rb,
107
+ processor/command/pr.rb, processor/command/ps.rb,
108
+ processor/command/quit.rb, processor/command/save.rb,
109
+ processor/command/server.rb, processor/command/set.rb,
110
+ processor/command/shell.rb, processor/command/up.rb: More mardown Conflicts: processor/command/pr.rb
111
+
112
+ 2015-01-30 rocky <rockyb@rubyforge.org>
113
+
114
+ * app/markdown.rb, processor/command/help.rb,
115
+ processor/command/help/command.md,
116
+ processor/command/help/command.txt,
117
+ processor/command/help/examples.md,
118
+ processor/command/help/examples.txt,
119
+ processor/command/help/filename.md,
120
+ processor/command/help/filename.txt,
121
+ processor/command/help/location.md,
122
+ processor/command/help/location.txt,
123
+ processor/command/help/suffixes.md,
124
+ processor/command/help/suffixes.txt, processor/msg.rb: Convert
125
+ syntax help to markdown Conflicts: processor/command/help.rb
126
+
127
+ 2015-01-30 rocky <rockyb@rubyforge.org>
128
+
129
+ * COPYING, Rakefile, app/markdown.rb, processor/command.rb,
130
+ processor/command/help.rb, processor/command/help/command.txt,
131
+ processor/msg.rb, trepanning.gemspec: Start long process of turning
132
+ help into markdown format. Conflicts: processor/msg.rb
133
+
134
+ 2015-01-30 rocky <rockyb@rubyforge.org>
135
+
136
+ * app/markdown.rb: Add a terminal markdown mode via redcloth
137
+
138
+ 2013-07-14 rocky <rockyb@rubyforge.org>
139
+
140
+ * : commit 2f66d769517327acbcec834c95714c7b4e8b6a92 Author: rocky
141
+ <rockyb@rubyforge.org> Date: Sun Jul 14 18:14:49 2013 -0400
142
+
143
+ 2013-07-14 rocky <rockyb@rubyforge.org>
144
+
145
+ * test/unit/test-cmd-parse_list_cmd.rb: Columnize is changing, so we
146
+ can use that for testing here.
147
+
148
+ 2013-06-30 rocky <rockyb@rubyforge.org>
149
+
150
+ * app/breakpoint.rb, app/complete.rb, processor/command/help.rb:
151
+ Update copyright on files changed this year.
152
+
153
+ 2013-06-30 rocky <rockyb@rubyforge.org>
154
+
155
+ * : commit a5b02f1909b7bf7fa9f7bd3e366eac0514eaf8af Author: rocky
156
+ <rockyb@rubyforge.org> Date: Sun Jun 30 06:47:17 2013 -0400
157
+
158
+ 2013-04-07 rocky <rockyb@rubyforge.org>
159
+
160
+ * README.md, app/complete.rb, test/unit/test-app-complete.rb: Small
161
+ changes. test-app-complete.rb: add an assertion message. reset:
162
+ strip trailing blanks.
163
+
164
+ 2013-03-30 rocky <rockyb@rubyforge.org>
165
+
166
+ * processor/complete.rb, processor/location.rb: complete.rb: add
167
+ macro names to list of initial completions. location.rb: strip
168
+ trailing blanks.
169
+
170
+ 2013-03-29 rocky <rockyb@rubyforge.org>
171
+
172
+ * app/core.rb, processor/msg.rb, processor/validate.rb: core: Guard
173
+ against deadlock
174
+
175
+ 2013-03-29 rocky <rockyb@rubyforge.org>
176
+
177
+ * app/default.rb, app/options.rb, interface/user.rb, io/input.rb,
178
+ processor/default.rb: More blank stripping
179
+
180
+ 2013-03-29 rocky <rockyb@rubyforge.org>
181
+
182
+ * lib/trepanning.rb, processor/command.rb: Start to extra stop
183
+ blanks from line of lines
184
+
185
+ 2013-03-29 rocky <rockyb@rubyforge.org>
186
+
187
+ * app/complete.rb, app/util.rb, processor.rb,
188
+ processor/complete.rb, processor/load_cmds.rb, processor/msg.rb:
189
+ Separate completion function
190
+
191
+ 2013-03-10 rocky <rockyb@rubyforge.org>
192
+
193
+ * : commit 2aecc51ba909e91a7ef39633e6b5f7b6a24d4489 Author: rocky
194
+ <rockyb@rubyforge.org> Date: Sun Mar 10 06:34:34 2013 -0400
195
+
196
+ 2013-02-03 rocky <rockyb@rubyforge.org>
197
+
198
+ * processor/command/alias.rb,
199
+ processor/command/info_subcmd/macro.rb, processor/command/macro.rb,
200
+ test/unit/test-cmd-alias.rb: Some small changes.
201
+
202
+ 2013-02-01 rocky <rockyb@rubyforge.org>
203
+
204
+ * : commit b881c698d50a796e2d23bb9cf131ea1ec7d77d84 Author: rocky
205
+ <rockyb@rubyforge.org> Date: Wed Jan 30 22:32:04 2013 -0500
206
+
207
+ 2013-01-18 rocky <rockyb@rubyforge.org>
208
+
209
+ * : commit 138e14167fca9ae9347425425529ca64c7b6c2cf Author: rocky
210
+ <rockyb@rubyforge.org> Date: Thu Jan 17 23:35:45 2013 -0500
211
+
212
+ 2013-01-17 rocky <rockyb@rubyforge.org>
213
+
214
+ * processor/command/edit.rb, test/unit/test-cmd-edit.rb: MinGW
215
+ handling of "edit" command
216
+
217
+ 2013-01-16 rocky <rockyb@rubyforge.org>
218
+
219
+ * : commit 7ed6926fdee6e685195f59d6f3330e75cb74ae4a Author: rocky
220
+ <rockyb@rubyforge.org> Date: Wed Jan 16 16:56:08 2013 -0500
221
+
222
+ 2013-01-15 rocky <rockyb@rubyforge.org>
223
+
224
+ * : commit aa3aece556a310a3386695a83c67dd4662bc1982 Author: rocky
225
+ <rockyb@rubyforge.org> Date: Tue Jan 15 22:42:45 2013 -0500
226
+
227
+ 2012-12-30 rocky <rockyb@rubyforge.org>
228
+
229
+ * processor/command/eval.rb: eval doc typo
230
+
231
+ 2012-12-09 rocky <rockyb@rubyforge.org>
232
+
233
+ * interface.rb, processor.rb, test/data/fname-with-blank.right:
234
+ Termination message should be associated with the command processor,
235
+ not the interface, I think.
236
+
237
+ 2012-12-01 rocky <rockyb@rubyforge.org>
238
+
239
+ * README.md: Markdown formatting typo
240
+
241
+ 2012-12-01 rocky <rockyb@rubyforge.org>
242
+
243
+ * README.md, processor/command/set_subcmd/pc.rb,
244
+ processor/command/set_subcmd/sp.rb: Better help for "set sp" and
245
+ "set pc". Update README.
246
+
247
+ 2012-12-01 rocky <rockyb@rubyforge.org>
248
+
249
+ * README.md: One more little change
250
+
251
+ 2012-12-01 rocky <rockyb@rubyforge.org>
252
+
253
+ * README.md: One more little change
254
+
255
+ 2012-12-01 rocky <rockyb@rubyforge.org>
256
+
257
+ * README.md, README.textile, trepanning.gemspec: README.textile ->
258
+ README.md
259
+
260
+ 2012-12-01 rocky <rockyb@rubyforge.org>
261
+
262
+ * README.textile: 1.9.3 over 1.9.2. Try console and ruby formating
263
+ in code blocks.
264
+
265
+ 2012-12-01 rocky <rockyb@rubyforge.org>
266
+
267
+ * app/options.rb, processor/command/set_subcmd/pc.rb: Add "set pc"
268
+ to modify the program counter. Perhaps one day we will add a "skip"
269
+ command.
270
+
1
271
  2012-11-25 rocky <rockyb@rubyforge.org>
2
272
 
3
- * NEWS, app/options.rb: Get ready for release. 0.1.6
273
+ * ChangeLog, NEWS, app/options.rb: Get ready for release. 0.1.6
4
274
 
5
275
  2012-11-25 rocky <rockyb@rubyforge.org>
6
276
 
@@ -22,15 +292,8 @@
22
292
 
23
293
  2012-11-24 rocky <rockyb@rubyforge.org>
24
294
 
25
- Merge branch 'master' of github.com:rocky/rb-trepanning
26
-
27
- 2012-11-24 rocky <rockyb@rubyforge.org>
28
-
29
- * lib/trepanning.rb, processor/command/debug.rb,
30
- processor/command/finish.rb, test/functional/test-recursive-bt.rb,
31
- trepanning.gemspec: Make this work on 1.9.3! (Really the heavy
32
- lifting was done in rb-threadframe). Adjust dependent versions
33
- acceptance.
295
+ * : commit 830440c79ee6d2b543a18b18d6796ae516aea938 Author: rocky
296
+ <rockyb@rubyforge.org> Date: Sat Nov 24 00:27:51 2012 -0500
34
297
 
35
298
  2012-08-25 rocky <rockyb@rubyforge.org>
36
299
 
@@ -43,12 +306,8 @@
43
306
 
44
307
  2012-08-05 rocky <rockyb@rubyforge.org>
45
308
 
46
- Merge branch 'master' of github.com:rocky/rb-trepanning
47
-
48
- 2012-08-05 rocky <rockyb@rubyforge.org>
49
-
50
- * test/functional/test-remap.rb: Skipp remap test until I figure
51
- what's up.
309
+ * : commit 50fd1f06f5c818ec82e7dcfc5fabb7b69f5e52de Author: rocky
310
+ <rockyb@rubyforge.org> Date: Sun Aug 5 00:26:19 2012 -0400
52
311
 
53
312
  2012-08-05 rocky <rockyb@rubyforge.org>
54
313
 
@@ -125,7 +384,7 @@
125
384
  processor/command/set_subcmd/auto_subcmd/irb.rb,
126
385
  processor/command/set_subcmd/auto_subcmd/list.rb,
127
386
  test/unit/test-cmd-set-auto-eval.rb.try: Makefile, check-filter.rb:
128
- reduce verbosity of testing output. Makefile: comment targets
387
+ reduce verbosity of testing output. Makefile: comment targets
129
388
  subcmd: document how save_command is supposed to work.
130
389
 
131
390
  2012-06-19 rocky <rockyb@rubyforge.org>
@@ -139,17 +398,11 @@
139
398
  2012-05-10 rocky <rockyb@rubyforge.org>
140
399
 
141
400
  * io/tcpclient.rb, processor.rb, test/functional/test-remap.rb: * processor.rb: Since location of processor has moved, relative path
142
- to data has changed too. * test/functional/test-remap.rb: test above
143
- change * io/tcpclient.rb: remove unused DEFAULT_OPTIONS
401
+ to data has changed too. * test/functional/test-remap.rb: test above change * io/tcpclient.rb: remove unused DEFAULT_OPTIONS
144
402
 
145
403
  2012-03-09 R. Bernstein <rocky.bernstein@gmail.com>
146
404
 
147
- Merge pull request #2 from Erkan-Yilmaz/master two small
148
- language changes
149
-
150
- 2012-03-09 Erkan Yilmaz <erkan77@gmail.com>
151
-
152
- * README.textile: small language changes
405
+ * : Merge pull request #2 from Erkan-Yilmaz/master two small language changes
153
406
 
154
407
  2011-10-29 rocky <rockyb@rubyforge.org>
155
408
 
@@ -164,8 +417,8 @@
164
417
  test/functional/test-recursive-bt.rb: app/frame.rb: Add direct
165
418
  recursion in stack frame and give a count of repeated frames. Was
166
419
  floor rounding halfway frame point when should have been ceiling
167
- rounding. source.rb: called ruby_syntax incorrectly. app/options.rb:
168
- bump version number
420
+ rounding. source.rb: called ruby_syntax incorrectly.
421
+ app/options.rb: bump version number
169
422
 
170
423
  2011-10-27 rocky <rockyb@rubyforge.org>
171
424
 
@@ -173,18 +426,14 @@
173
426
 
174
427
  2011-10-23 rocky <rockyb@rubyforge.org>
175
428
 
176
- Merge branch 'master' of github.com:rocky/rb-trepanning
177
-
178
- 2011-10-23 rocky <rockyb@rubyforge.org>
179
-
180
- * processor/command/set_subcmd/substitute_subcmd/eval.rb: Doc
181
- spelling typo
429
+ * : commit d267926bb52d8268905c2be8027c791090f3202e Author: rocky
430
+ <rockyb@rubyforge.org> Date: Sun Oct 23 11:06:30 2011 -0400
182
431
 
183
432
  2011-10-16 rocky <rockyb@rubyforge.org>
184
433
 
185
434
  * ChangeLog, NEWS, processor/command/shell.rb: Update NEWS and
186
- ChangeLog in preparation for release. shell.rb: adjust help to refer
187
- to "irb", since #{NAME} is no longer "irb" but "shell".
435
+ ChangeLog in preparation for release. shell.rb: adjust help to
436
+ refer to "irb", since #{NAME} is no longer "irb" but "shell".
188
437
 
189
438
  2011-10-15 rocky <rockyb@rubyforge.org>
190
439
 
@@ -216,14 +465,8 @@
216
465
 
217
466
  2011-10-10 rocky <rockyb@rubyforge.org>
218
467
 
219
- Merge branch 'master' of github.com:rocky/rb-trepanning
220
-
221
- 2011-10-10 rocky <rockyb@rubyforge.org>
222
-
223
- * processor.rb, processor/command/display.rb, processor/running.rb,
224
- test/data/enable.cmd, test/data/trace.right: Respect breakpoints
225
- when :traceprint is in effect. However turn a "continue" into a
226
- "step" when :traceprint is in effect. save_display is borked.
468
+ * : commit 5654fa909b043ccdf324b63227f77eddd6dd4258 Author: rocky
469
+ <rockyb@rubyforge.org> Date: Mon Oct 10 23:25:26 2011 -0400
227
470
 
228
471
  2011-10-09 rocky <rockyb@rubyforge.org>
229
472
 
@@ -258,20 +501,12 @@
258
501
 
259
502
  2011-09-26 rocky <rockyb@rubyforge.org>
260
503
 
261
- Merge branch 'master' of github.com:rocky/rb-trepanning
262
-
263
- 2011-09-26 rocky <rockyb@rubyforge.org>
264
-
265
- * processor/command/macro.rb: Improve "macro" documentation
504
+ * : commit e6e4c04e2eaf4c4a25a1d1d9c98c4486049d23a9 Author: rocky
505
+ <rockyb@rubyforge.org> Date: Mon Sep 26 23:28:22 2011 -0400
266
506
 
267
507
  2011-09-26 R. Bernstein <rocky.bernstein@gmail.com>
268
508
 
269
- Merge pull request #1 from jfirebaugh/patch-1 Correct link to
270
- installation instructions
271
-
272
- 2011-09-26 John Firebaugh <john.firebaugh@gmail.com>
273
-
274
- * README.textile: Correct link to installation instructions
509
+ * : Merge pull request #1 from jfirebaugh/patch-1 Correct link to installation instructions
275
510
 
276
511
  2011-09-22 rocky <rockyb@rubyforge.org>
277
512
 
@@ -285,11 +520,8 @@
285
520
 
286
521
  2011-09-17 rocky <rockyb@rubyforge.org>
287
522
 
288
- Merge branch 'master' of github.com:rocky/rb-trepanning
289
-
290
- 2011-09-17 rocky <rockyb@rubyforge.org>
291
-
292
- * processor/command/set_subcmd/different.rb: Grammar
523
+ * : commit f9f3f4c0548c19f6da6fb723140faadb95b591d9 Author: rocky
524
+ <rockyb@rubyforge.org> Date: Sat Sep 17 20:51:55 2011 -0400
293
525
 
294
526
  2011-09-15 rocky <rockyb@rubyforge.org>
295
527
 
@@ -304,11 +536,8 @@
304
536
 
305
537
  2011-09-05 rocky <rockyb@rubyforge.org>
306
538
 
307
- Merge branch 'master' of github.com:rocky/rb-trepanning
308
-
309
- 2011-09-05 rocky <rockyb@rubyforge.org>
310
-
311
- * app/run.rb: Change absolute/relative file test in whence_file
539
+ * : commit 75eef6a353481e098766c44a140c6060eac47cac Author: rocky
540
+ <rockyb@rubyforge.org> Date: Mon Sep 5 02:02:52 2011 -0400
312
541
 
313
542
  2011-09-04 rocky <rockyb@rubyforge.org>
314
543
 
@@ -358,12 +587,8 @@
358
587
 
359
588
  2011-08-21 rocky <rockyb@rubyforge.org>
360
589
 
361
- Merge branch 'master' of github.com:rocky/rb-trepanning
362
-
363
- 2011-08-21 rocky <rockyb@rubyforge.org>
364
-
365
- * processor/command.rb, processor/command/base/subcmd.rb: Remove
366
- unused function
590
+ * : commit a4c39904233ffa7555d868feacf0ff597fda7d39 Author: rocky
591
+ <rockyb@rubyforge.org> Date: Sun Aug 21 09:15:47 2011 -0400
367
592
 
368
593
  2011-08-21 rocky <rockyb@rubyforge.org>
369
594
 
@@ -476,38 +701,18 @@
476
701
 
477
702
  2011-06-23 rocky <rockyb@rubyforge.org>
478
703
 
479
- Merge branch 'master' of github.com:rocky/rb-trepanning
480
-
481
- 2011-06-22 rocky <rockyb@rubyforge.org>
482
-
483
- * trepanning.gemspec: diff-lcs dependency is only a deveopment
484
- dependency.
704
+ * : commit 3a6676451f4478784c01c0a68283d818ee6a412a Author: rocky
705
+ <rockyb@rubyforge.org> Date: Wed Jun 22 22:37:02 2011 -0400
485
706
 
486
707
  2011-06-21 rocky <rockyb@rubyforge.org>
487
708
 
488
- Merge branch 'master' of github.com:rocky/rb-trepanning
489
-
490
- 2011-06-21 rocky <rockyb@rubyforge.org>
491
-
492
- * NEWS, app/run.rb, app/util.rb, bin/trepan,
493
- processor/command/info_subcmd/files.rb,
494
- processor/command/info_subcmd/source.rb, test/unit/test-app-run.rb:
495
- Give breakpoints for files via linecache only if they are
496
- syntactically correct ruby files. Fix bug in "info files .".
497
-
498
- 2011-06-19 rocky <rockyb@rubyforge.org>
499
-
500
- Merge branch 'master' of github.com:rocky/rb-trepanning
501
- Conflicts: processor/command/info_subcmd/variables_subcmd/locals.rb
502
- processor/msg.rb
709
+ * : commit 061b6c66d34d5f51a4b88f4673ebcad6d6950b30 Author: rocky
710
+ <rockyb@rubyforge.org> Date: Tue Jun 21 23:41:59 2011 -0400
503
711
 
504
712
  2011-06-19 rocky <rockyb@rubyforge.org>
505
713
 
506
- * processor/command/help.rb, processor/command/info.rb,
507
- processor/command/info_subcmd/variables_subcmd/constant.rb,
508
- processor/command/info_subcmd/variables_subcmd/locals.rb,
509
- processor/help.rb, processor/msg.rb, processor/subcmd.rb: Correct
510
- abbreviation lookup and respect mode. Add "info var constant".
714
+ * : commit 824077bf003a6d71f090d3d6c369e418ea40ac0a Author: rocky
715
+ <rockyb@rubyforge.org> Date: Sun Jun 19 13:10:32 2011 -0400
511
716
 
512
717
  2011-06-18 rocky <rockyb@rubyforge.org>
513
718
 
@@ -606,13 +811,8 @@
606
811
 
607
812
  2011-06-11 rocky <rockyb@rubyforge.org>
608
813
 
609
- Merge branch 'master' of github.com:rocky/rb-trepanning
610
-
611
- 2011-06-11 rocky <rockyb@rubyforge.org>
612
-
613
- * processor/command/watchg.rb, processor/load_cmds.rb: Join class
614
- Trepan; class CmdProcessor to make more compatible with
615
- rb8-trepanning
814
+ * : commit 53ba15a1bdbc6fa9b9a68b51a4da580f9fee7969 Author: rocky
815
+ <rockyb@rubyforge.org> Date: Sat Jun 11 14:59:37 2011 -0400
616
816
 
617
817
  2011-06-11 rocky <rockyb@rubyforge.org>
618
818
 
@@ -628,9 +828,9 @@
628
828
  test/unit/test-app-file.rb, test/unit/test-base-subcmd.rb,
629
829
  test/unit/test-base-submgr.rb, test/unit/test-proc-location.rb,
630
830
  test/unit/test-proc-main.rb: set trace var -> watchg which is more
631
- gdb-like. Add on/off/stop/nostop which is more like ruby-debug had.
632
- Show variable and value on change. And show in "info breakpoint". Go
633
- over rake check:unit to make work. Test code setup has gotten
831
+ gdb-like. Add on/off/stop/nostop which is more like ruby-debug had.
832
+ Show variable and value on change. And show in "info breakpoint".
833
+ Go over rake check:unit to make work. Test code setup has gotten
634
834
  simpler.
635
835
 
636
836
  2011-06-10 rocky <rockyb@rubyforge.org>
@@ -641,7 +841,6 @@
641
841
  processor/location.rb, processor/main.rb, processor/mock.rb,
642
842
  processor/virtual.rb: Add set/show reload. Sync with rbx-trepanning.
643
843
 
644
-
645
844
  2011-06-10 rocky <rockyb@rubyforge.org>
646
845
 
647
846
  * ChangeLog, NEWS: What's up.
@@ -683,7 +882,7 @@
683
882
 
684
883
  * processor/command/info_subcmd/args.rb,
685
884
  processor/command/set_subcmd/highlight.rb: highlight: sync with
686
- rb8-trepanning and rbx-trepanning. args.rb: small changes.
885
+ rb8-trepanning and rbx-trepanning. args.rb: small changes.
687
886
 
688
887
  2011-06-08 rocky <rockyb@rubyforge.org>
689
888
 
@@ -707,28 +906,19 @@
707
906
 
708
907
  * processor/command/shell.rb: Doc change to syn with rb8-trepanning
709
908
 
710
-
711
909
  2011-06-05 rocky <rockyb@rubyforge.org>
712
910
 
713
911
  * test/unit/test-cmd-edit.rb: Add an "edit" command unit test.
714
912
 
715
913
  2011-06-05 rocky <rockyb@rubyforge.org>
716
914
 
717
- Merge branch 'master' of github.com:rocky/rb-trepanning
718
-
719
- 2011-06-05 rocky <rockyb@rubyforge.org>
720
-
721
- * app/options.rb: Sync options processing with rb8-trepanning. Added
722
- option --cd --incliude --debug, and --require.
723
-
724
- 2011-06-04 rocky <rockyb@rubyforge.org>
725
-
726
- Merge branch 'master' of github.com:rocky/rb-trepanning
727
- Conflicts: processor/command/help/command.txt
915
+ * : commit 1016cead991750f70c63700b1c041806d64e8cd9 Author: rocky
916
+ <rockyb@rubyforge.org> Date: Sun Jun 5 09:50:51 2011 -0400
728
917
 
729
918
  2011-06-04 rocky <rockyb@rubyforge.org>
730
919
 
731
- * interface/script.rb: Sync with rb8-trepanning.
920
+ * : commit 0edc8c7a2050c598c8c14db34bd8afcaa74f4e2e Author: rocky
921
+ <rockyb@rubyforge.org> Date: Sat Jun 4 21:52:38 2011 -0400
732
922
 
733
923
  2011-06-04 rocky <rockyb@rubyforge.org>
734
924
 
@@ -739,7 +929,6 @@
739
929
 
740
930
  * processor/command/help/command.txt: command syntax help yet again.
741
931
 
742
-
743
932
  2011-06-04 rocky <rockyb@rubyforge.org>
744
933
 
745
934
  * app/util.rb, processor/command/disassemble.rb,
@@ -776,12 +965,8 @@
776
965
 
777
966
  2011-06-03 rocky <rockyb@rubyforge.org>
778
967
 
779
- Merge branch 'master' of github.com:rocky/rb-trepanning
780
-
781
- 2011-06-03 rocky <rockyb@rubyforge.org>
782
-
783
- * interface/client.rb, interface/server.rb, interface/user.rb: Add
784
- closed? method to make sure both input and output are closed.
968
+ * : commit 13c7cd116c895853509ba4fc70e7332fa0a8f39d Author: rocky
969
+ <rockyb@rubyforge.org> Date: Fri Jun 3 11:28:12 2011 -0400
785
970
 
786
971
  2011-06-02 rocky <rockyb@rubyforge.org>
787
972
 
@@ -792,13 +977,8 @@
792
977
 
793
978
  2011-06-02 rocky <rockyb@rubyforge.org>
794
979
 
795
- Merge branch 'master' of github.com:rocky/rb-trepanning
796
-
797
- 2011-06-02 rocky <rockyb@rubyforge.org>
798
-
799
- * processor/command/break.rb, processor/command/continue.rb,
800
- processor/command/tbreak.rb: Add "tbreak" - set a temporary
801
- breakpoint. gdb has it.
980
+ * : commit d7b70025afbd905d111fde5d5e61544051bdd4ea Author: rocky
981
+ <rockyb@rubyforge.org> Date: Thu Jun 2 19:53:31 2011 -0400
802
982
 
803
983
  2011-06-02 rocky <rockyb@rubyforge.org>
804
984
 
@@ -838,11 +1018,8 @@
838
1018
 
839
1019
  2011-05-28 rocky <rockyb@rubyforge.org>
840
1020
 
841
- Merge branch 'master' of github.com:rocky/rb-trepanning
842
-
843
- 2011-05-28 rocky <rockyb@rubyforge.org>
844
-
845
- * processor/mock.rb: Sync with rbx-trepanning
1021
+ * : commit af4d6bec355746028a73c1be1547014212da61ae Author: rocky
1022
+ <rockyb@rubyforge.org> Date: Sat May 28 18:09:05 2011 -0400
846
1023
 
847
1024
  2011-05-28 rocky <rockyb@rubyforge.org>
848
1025
 
@@ -853,10 +1030,9 @@
853
1030
  processor/location.rb, processor/main.rb, processor/msg.rb,
854
1031
  processor/running.rb, processor/validate.rb, processor/virtual.rb:
855
1032
  Ensure Trepan::CmdProcessor has a consistent initialize interface.
856
- Fix up standalone code for "complete" command. Change $0 in loading
1033
+ Fix up standalone code for "complete" command. Change $0 in loading
857
1034
  so as not to interfere with __FILE__ = $. Sync with rb8-trepanning.
858
1035
 
859
-
860
1036
  2011-05-27 rocky <rockyb@rubyforge.org>
861
1037
 
862
1038
  * app/util.rb, processor/command/eval.rb, processor/load_cmds.rb,
@@ -900,7 +1076,7 @@
900
1076
 
901
1077
  * processor/command/enable.rb, processor/main.rb: main.rb: in
902
1078
  autoeval, intercept NameError and call it an "undefined debugger
903
- command". I think this will be less confusing. enable.rb; revise
1079
+ command". I think this will be less confusing. enable.rb; revise
904
1080
  command help.
905
1081
 
906
1082
  2011-04-19 rocky <rockyb@rubyforge.org>
@@ -1018,30 +1194,17 @@
1018
1194
 
1019
1195
  2011-03-17 rocky <rockyb@rubyforge.org>
1020
1196
 
1021
- Merge branch 'master' of github.com:rocky/rb-trepanning
1022
-
1023
- 2011-03-17 rocky <rockyb@rubyforge.org>
1024
-
1025
- * Rakefile, app/options.rb, app/run.rb, bin/trepan,
1026
- test/integration/helper.rb, test/unit/test-app-run.rb,
1027
- test/unit/test-bin-trepan.rb: Trepan::ruby_path -> RbConfig.ruby
1028
-
1029
- 2011-03-15 rocky <rockyb@rubyforge.org>
1030
-
1031
- Dependency administrivia
1032
-
1033
- 2011-03-15 rocky <rockyb@rubyforge.org>
1034
-
1035
- * trepanning.gemspec: Remove mention of intermediate dev's in
1036
- dependency.
1197
+ * : commit 361cf156f5d476f1a4353918f34812f6c42d03ca Author: rocky
1198
+ <rockyb@rubyforge.org> Date: Thu Mar 17 22:20:16 2011 -0400
1037
1199
 
1038
1200
  2011-03-15 rocky <rockyb@rubyforge.org>
1039
1201
 
1040
- Merge branch 'master' of github.com:rocky/rb-trepanning
1202
+ * : Dependency administrivia
1041
1203
 
1042
1204
  2011-03-15 rocky <rockyb@rubyforge.org>
1043
1205
 
1044
- * app/options.rb, trepanning.gemspec: Get ready for release 1.1
1206
+ * : commit 3971bf26d4b4f144a34d029e402f8516ec0f0dba Author: rocky
1207
+ <rockyb@rubyforge.org> Date: Tue Mar 15 20:53:44 2011 -0400
1045
1208
 
1046
1209
  2011-03-15 rocky <rockyb@rubyforge.org>
1047
1210
 
@@ -1140,7 +1303,6 @@
1140
1303
 
1141
1304
  * processor/command/info_subcmd/frame.rb: Add frame # in info frame
1142
1305
 
1143
-
1144
1306
  2011-03-07 rocky <rockyb@rubyforge.org>
1145
1307
 
1146
1308
  * Rakefile, app/file.rb, app/iseq.rb, processor/validate.rb,
@@ -1162,11 +1324,8 @@
1162
1324
 
1163
1325
  2011-03-07 rocky <rockyb@rubyforge.org>
1164
1326
 
1165
- Merge branch 'master' of github.com:rocky/rb-trepanning
1166
-
1167
- 2011-03-07 rocky <rockyb@rubyforge.org>
1168
-
1169
- * app/breakpoint.rb: Raise an error if we can't set a breakpoint.
1327
+ * : commit 7b87f79c483544776ea8a1f207156656ae4a13d9 Author: rocky
1328
+ <rockyb@rubyforge.org> Date: Mon Mar 7 16:20:01 2011 -0500
1170
1329
 
1171
1330
  2011-03-07 rocky <rockyb@rubyforge.org>
1172
1331
 
@@ -1176,12 +1335,8 @@
1176
1335
 
1177
1336
  2011-03-07 rocky <rockyb@rubyforge.org>
1178
1337
 
1179
- Merge branch 'master' of github.com:rocky/rb-trepanning
1180
-
1181
- 2011-03-07 rocky <rockyb@rubyforge.org>
1182
-
1183
- * app/file.rb: Search child iseqs in finding breakpoint line number
1184
- of for a file.
1338
+ * : commit 0eb57462e09683ec947818547e985097160ca86f Author: rocky
1339
+ <rockyb@rubyforge.org> Date: Mon Mar 7 09:53:11 2011 -0500
1185
1340
 
1186
1341
  2011-03-07 rocky <rockyb@rubyforge.org>
1187
1342
 
@@ -1243,15 +1398,8 @@
1243
1398
 
1244
1399
  2011-03-05 rocky <rockyb@rubyforge.org>
1245
1400
 
1246
- Merge branch 'master' of github.com:rocky/rb-trepanning
1247
-
1248
- 2011-03-05 rocky <rockyb@rubyforge.org>
1249
-
1250
- * processor/command/base/submgr.rb, processor/command/save.rb,
1251
- processor/command/set_subcmd/trace.rb,
1252
- processor/command/set_subcmd/trace_subcmd/print.rb,
1253
- processor/command/set_subcmd/trace_subcmd/var.rb: Towards getting
1254
- restart to erase its startup file
1401
+ * : commit 4599d062ed9faa7d5d3ce4b318718d4623c5e9a9 Author: rocky
1402
+ <rockyb@rubyforge.org> Date: Sat Mar 5 17:44:59 2011 -0500
1255
1403
 
1256
1404
  2011-03-05 rocky <rockyb@rubyforge.org>
1257
1405
 
@@ -1288,14 +1436,7 @@
1288
1436
 
1289
1437
  2011-03-02 rocky <rockyb@rubyforge.org>
1290
1438
 
1291
- I hate conflicted merges
1292
-
1293
- 2011-03-02 rocky <rockyb@rubyforge.org>
1294
-
1295
- * processor/command/eval.rb, processor/eval.rb,
1296
- test/functional/test-eval.rb, test/functional/test-raise.rb,
1297
- test/functional/test-return.rb, test/unit/test-proc-main.rb: Add to
1298
- eval? stripping "unless" and optional "then".
1439
+ * : I hate conflicted merges
1299
1440
 
1300
1441
  2011-02-28 rocky <rockyb@rubyforge.org>
1301
1442
 
@@ -1318,7 +1459,6 @@
1318
1459
 
1319
1460
  * app/cmd_parse.citrus, app/cmd_parse.rb: Start filling out location
1320
1461
 
1321
-
1322
1462
  2011-02-25 rocky <rockyb@rubyforge.org>
1323
1463
 
1324
1464
  * app/cmd_parse.citrus, app/cmd_parse.rb, app/method_name.citrus,
@@ -1326,14 +1466,8 @@
1326
1466
 
1327
1467
  2011-02-25 rocky <rockyb@rubyforge.org>
1328
1468
 
1329
- Merge branch 'master' of github.com:rocky/rb-trepanning
1330
-
1331
- 2011-02-25 rocky <rockyb@rubyforge.org>
1332
-
1333
- * processor/command/break.rb, processor/validate.rb,
1334
- test/unit/test-cmd-break.rb, test/unit/test-proc-validate.rb: An
1335
- instruction offset is now indicated with an `@' prefact rather than
1336
- 'O' or `o'.
1469
+ * : commit b98243ca9ed671ec656f1b071e257cdaee44054a Author: rocky
1470
+ <rockyb@rubyforge.org> Date: Fri Feb 25 18:21:24 2011 -0500
1337
1471
 
1338
1472
  2011-02-25 rocky <rockyb@rubyforge.org>
1339
1473
 
@@ -1342,11 +1476,8 @@
1342
1476
 
1343
1477
  2011-02-25 rocky <rockyb@rubyforge.org>
1344
1478
 
1345
- Merge branch 'master' of github.com:rocky/rb-trepanning
1346
-
1347
- 2011-02-25 rocky <rockyb@rubyforge.org>
1348
-
1349
- * app/method_name.rb: Partial synchronize with rbx-trepanning.
1479
+ * : commit 6bfe3bf6344dc8f7f6ac730d6cfbcf39ab860385 Author: rocky
1480
+ <rockyb@rubyforge.org> Date: Fri Feb 25 08:29:44 2011 -0500
1350
1481
 
1351
1482
  2011-02-23 rocky <rockyb@rubyforge.org>
1352
1483
 
@@ -1482,29 +1613,21 @@
1482
1613
 
1483
1614
  2011-02-14 rocky <rockyb@rubyforge.org>
1484
1615
 
1485
- Merge branch 'master' of github.com:rocky/rb-trepanning
1486
-
1487
- 2011-02-14 rocky <rockyb@rubyforge.org>
1488
-
1489
- * processor/command/help.rb, processor/command/macro.rb,
1490
- processor/main.rb, processor/running.rb: macro.rb: Macros are more
1491
- useful now. An array of strings pushes additional commands on the
1492
- command queue. help.rb: Show aliases and macros in help *. Add help
1493
- for exach of these individually.
1616
+ * : commit c0490555d98866806a2f7ffcaccf8116e2e39031 Author: rocky
1617
+ <rockyb@rubyforge.org> Date: Mon Feb 14 07:29:27 2011 -0500
1494
1618
 
1495
1619
  2011-02-14 rocky <rockyb@rubyforge.org>
1496
1620
 
1497
1621
  * processor/command/help.rb, processor/command/macro.rb,
1498
1622
  processor/main.rb, processor/running.rb: macro.rb: Macros are more
1499
1623
  useful now. An array of strings pushes additional commands on the
1500
- command queue. help.rb: Show aliases and macros in help *. Add help
1624
+ command queue. help.rb: Show aliases and macros in help *. Add help
1501
1625
  for exach of these individually.
1502
1626
 
1503
1627
  2011-02-13 rocky <rockyb@rubyforge.org>
1504
1628
 
1505
1629
  * processor/command/info_subcmd/ruby.rb: I can't spell worth beans.
1506
1630
 
1507
-
1508
1631
  2011-02-13 rocky <rockyb@rubyforge.org>
1509
1632
 
1510
1633
  * app/core.rb, app/method_name.citrus, processor/command/finish.rb,
@@ -1570,7 +1693,7 @@
1570
1693
  * .gemspec, io/tcpclient.rb, processor/command/list.rb,
1571
1694
  processor/validate.rb, test/unit/test-io-tcpclient.rb,
1572
1695
  test/unit/test-proc-validate.rb: Use method.type to explain why a
1573
- valid method might not be listable/breakpointable. tcpclient.rb:
1696
+ valid method might not be listable/breakpointable. tcpclient.rb:
1574
1697
  typo others: small typos.
1575
1698
 
1576
1699
  2011-02-12 rocky <rockyb@rubyforge.org>
@@ -1607,13 +1730,8 @@
1607
1730
 
1608
1731
  2011-02-11 rocky <rockyb@rubyforge.org>
1609
1732
 
1610
- Merge branch 'master' of github.com:rocky/rb-trepanning
1611
-
1612
- 2011-02-11 rocky <rockyb@rubyforge.org>
1613
-
1614
- * io/input.rb, test/unit/test-completion.rb: input.rb: Make sure
1615
- readline finalization is done once. test-completion.rb: don't pull
1616
- in readline routines to test completion.
1733
+ * : commit bc51a57707a1046b0119cc557f26850b5559027b Author: rocky
1734
+ <rockyb@rubyforge.org> Date: Fri Feb 11 10:02:44 2011 -0500
1617
1735
 
1618
1736
  2011-02-10 rocky <rockyb@rubyforge.org>
1619
1737
 
@@ -1661,15 +1779,7 @@
1661
1779
 
1662
1780
  2011-02-08 rocky <rockyb@rubyforge.org>
1663
1781
 
1664
- I hate conflicted merges
1665
-
1666
- 2011-02-08 rocky <rockyb@rubyforge.org>
1667
-
1668
- * interface/base_intf.rb, interface/user.rb, io/input.rb,
1669
- lib/trepanning.rb, processor/default.rb, processor/load_cmds.rb,
1670
- processor/main.rb: Save debugger commands in history now. Move
1671
- history saving code from debugger into user interface. Save history
1672
- file on exit in finalization routine.
1782
+ * : I hate conflicted merges
1673
1783
 
1674
1784
  2011-02-06 rocky <rockyb@rubyforge.org>
1675
1785
 
@@ -1709,12 +1819,8 @@
1709
1819
 
1710
1820
  2011-02-06 rocky <rockyb@rubyforge.org>
1711
1821
 
1712
- Merge branch 'master' of github.com:rocky/rb-trepanning
1713
-
1714
- 2011-02-06 rocky <rockyb@rubyforge.org>
1715
-
1716
- * data/method_name.citrus, data/method_name.rb: PEG parsing
1717
- experiments for parsing method names.
1822
+ * : commit 4fc8780b562722cc1f9e946addda03b1b7b8d5d3 Author: rocky
1823
+ <rockyb@rubyforge.org> Date: Sun Feb 6 00:34:27 2011 -0500
1718
1824
 
1719
1825
  2011-02-05 rocky <rockyb@rubyforge.org>
1720
1826
 
@@ -1754,7 +1860,7 @@
1754
1860
  processor/command/help.rb, processor/command/set_subcmd/max.rb,
1755
1861
  processor/load_cmds.rb: input.rb: add termination routine for
1756
1862
  readline on interrupt. Handle interrupt. Cache have_readline.
1757
- subcmd.rb: add completion for set boolean (on/off). help.rb: fix
1863
+ subcmd.rb: add completion for set boolean (on/off). help.rb: fix
1758
1864
  completion after previous refactor
1759
1865
 
1760
1866
  2011-02-04 rocky <rockyb@rubyforge.org>
@@ -1772,7 +1878,7 @@
1772
1878
  processor/subcmd.rb, test/unit/test-app-complete.rb,
1773
1879
  test/unit/test-app-util.rb, test/unit/test-base-submgr.rb: Expand
1774
1880
  completion down one level and and completion for subsub command
1775
- managers. This needs to be refactored. Add data for "info file"
1881
+ managers. This needs to be refactored. Add data for "info file"
1776
1882
  tcpfns.rb, comcodes.rb: More tests for pre-defined constants.
1777
1883
 
1778
1884
  2011-02-04 rocky <rockyb@rubyforge.org>
@@ -1795,7 +1901,7 @@
1795
1901
  processor/load_cmds.rb, test/data/fname-with-blank.right,
1796
1902
  test/data/quit.right, test/unit/test-app-util.rb,
1797
1903
  test/unit/test-cmd-help.rb: DRY and test completion code more. Add
1798
- some for help. Allow "show auto" without trailing space (e.g. show
1904
+ some for help. Allow "show auto" without trailing space (e.g. show
1799
1905
  autoeval") for ruby-debug compatibility Remove verbose output for
1800
1906
  initfiles.
1801
1907
 
@@ -1819,23 +1925,12 @@
1819
1925
 
1820
1926
  2011-02-02 rocky <rockyb@rubyforge.org>
1821
1927
 
1822
- I hate conflicted merges
1823
-
1824
- 2011-02-02 rocky <rockyb@rubyforge.org>
1825
-
1826
- * processor/command/base/submgr.rb, processor/load_cmds.rb,
1827
- test/unit/test-proc-load_cmds.rb: Add subcommand completion. Sync
1828
- with rbx-trepanning.
1928
+ * : I hate conflicted merges
1829
1929
 
1830
1930
  2011-02-02 rocky <rockyb@rubyforge.org>
1831
1931
 
1832
- Merge branch 'master' of github.com:rocky/rb-trepanning
1833
-
1834
- 2011-02-02 rocky <rockyb@rubyforge.org>
1835
-
1836
- * io/input.rb, lib/trepanning.rb, processor/command/complete.rb,
1837
- processor/load_cmds.rb: Start command completion. Add debugger
1838
- "complete" command.
1932
+ * : commit a811559df4478c2688fe2043846841ad904142fd Author: rocky
1933
+ <rockyb@rubyforge.org> Date: Wed Feb 2 04:06:25 2011 -0500
1839
1934
 
1840
1935
  2011-02-01 rocky <rockyb@rubyforge.org>
1841
1936
 
@@ -1860,12 +1955,8 @@
1860
1955
  2011-02-01 rocky <rockyb@rubyforge.org>
1861
1956
 
1862
1957
  * ChangeLog, NEWS, app/disassemble.rb, app/yarv.rb,
1863
- processor/command/disassemble.rb: Feb 1, 2011 (0.1.0) * Add Remote
1864
- debugging interface. Add options --server --port * Add Syntax
1865
- highlighting on Ruby and YARV listings and locations * Section
1866
- highlighting on some commands * Use ;; to allow multiple debugger
1867
- commands. Document debugger command syntax * include data files for
1868
- debugging custom-require * Numerous bug fixes and code cleanups
1958
+ 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
1959
+ command syntax * include data files for debugging custom-require * Numerous bug fixes and code cleanups
1869
1960
 
1870
1961
  2011-02-01 rocky <rockyb@rubyforge.org>
1871
1962
 
@@ -1940,8 +2031,8 @@
1940
2031
  processor/command/set_subcmd/trace.rb, processor/load_cmds.rb:
1941
2032
  reload.rb: allow loading of a new debugger command files
1942
2033
  load_cmds.rb: allow loading files as well as directories. Use send
1943
- over eval since it is better in reporting errors. *_subcmd/*.rb: DRY
1944
- code for setting NAME and PREFIX
2034
+ over eval since it is better in reporting errors. *_subcmd/*.rb:
2035
+ DRY code for setting NAME and PREFIX
1945
2036
 
1946
2037
  2011-01-29 rocky <rockyb@rubyforge.org>
1947
2038
 
@@ -2052,12 +2143,8 @@
2052
2143
 
2053
2144
  2011-01-11 rocky <rockyb@rubyforge.org>
2054
2145
 
2055
- Merge branch 'master' of github.com:rocky/rb-trepanning
2056
-
2057
- 2011-01-11 rocky <rockyb@rubyforge.org>
2058
-
2059
- * io/base_io.rb, io/tcpclient.rb, io/tcpfns.rb, io/tcpserver.rb:
2060
- Move some out-of-process TCP I/O code from rubinius.
2146
+ * : commit ca6a6ce7ba4599c5edecda1b70cac3656cf50b54 Author: rocky
2147
+ <rockyb@rubyforge.org> Date: Tue Jan 11 19:28:29 2011 -0500
2061
2148
 
2062
2149
  2011-01-11 rocky <rockyb@rubyforge.org>
2063
2150
 
@@ -2067,30 +2154,19 @@
2067
2154
 
2068
2155
  2010-12-28 rocky <rockyb@rubyforge.org>
2069
2156
 
2070
- Merge branch 'master' of github.com:rocky/rb-trepanning
2071
-
2072
- 2010-12-28 rocky <rockyb@rubyforge.org>
2073
-
2074
- * test/unit/cmd-helper.rb, test/unit/mock-helper.rb,
2075
- test/unit/test-cmd-alias.rb, test/unit/test-cmd-break.rb,
2076
- test/unit/test-cmd-endisable.rb, test/unit/test-cmd-help.rb,
2077
- test/unit/test-cmd-kill.rb, test/unit/test-cmd-quit.rb,
2078
- test/unit/test-cmd-step.rb: DRY test code more helper routines.
2157
+ * : commit 6585edc946e7c7bc3b8cd20b86860435569d7dd9 Author: rocky
2158
+ <rockyb@rubyforge.org> Date: Tue Dec 28 14:04:16 2010 -0500
2079
2159
 
2080
2160
  2010-12-27 rocky <rockyb@rubyforge.org>
2081
2161
 
2082
2162
  * .gemspec, processor/main.rb, test/unit/test-app-file.rb: .gemspec:
2083
2163
  need 1.9.2frame main.rb: wrong fn any -> all? But will rewrite more
2084
- completely later. test-app-file.rb: remove debug statement.
2085
-
2086
- 2010-12-27 rocky <rockyb@rubyforge.org>
2087
-
2088
- Merge branch 'master' of github.com:rocky/rb-trepanning
2164
+ completely later. test-app-file.rb: remove debug statement.
2089
2165
 
2090
2166
  2010-12-27 rocky <rockyb@rubyforge.org>
2091
2167
 
2092
- * processor/command/list.rb, test/unit/test-base-subcmd.rb: list.rb:
2093
- help text corrections
2168
+ * : commit 5fa8ccdc95a478e19f2a1f4874c8d24663aff36d Author: rocky
2169
+ <rockyb@rubyforge.org> Date: Mon Dec 27 10:48:14 2010 -0500
2094
2170
 
2095
2171
  2010-12-25 rocky <rockyb@rubyforge.org>
2096
2172
 
@@ -2151,18 +2227,13 @@
2151
2227
  2010-12-15 rocky <rockyb@rubyforge.org>
2152
2228
 
2153
2229
  * interface/script.rb, test/data/quit.cmd, test/example/null.rb:
2154
- quit.cmd: use no-confirmation form of quit. null.rb: need a
2155
- statement or we don't even stop initially. script.rb: sync with
2230
+ quit.cmd: use no-confirmation form of quit. null.rb: need a
2231
+ statement or we don't even stop initially. script.rb: sync with
2156
2232
  rbx-trepanning: allow input to be passed in.
2157
2233
 
2158
2234
  2010-12-15 rocky <rockyb@rubyforge.org>
2159
2235
 
2160
- I hate conflicted merges
2161
-
2162
- 2010-12-15 rocky <rockyb@rubyforge.org>
2163
-
2164
- * ChangeLog, app/options.rb: Correct --help portion of --nx option.
2165
-
2236
+ * : I hate conflicted merges
2166
2237
 
2167
2238
  2010-12-10 rocky <rockyb@rubyforge.org>
2168
2239
 
@@ -2266,28 +2337,8 @@
2266
2337
 
2267
2338
  2010-11-28 rocky <rockyb@rubyforge.org>
2268
2339
 
2269
- Merge branch 'master' of github.com:rocky/rb-trepanning
2270
-
2271
- 2010-11-28 rocky <rockyb@rubyforge.org>
2272
-
2273
- * Rakefile, processor/command/info_subcmd/registers_subcmd/dfp.rb,
2274
- processor/command/info_subcmd/registers_subcmd/lfp.rb,
2275
- processor/command/info_subcmd/registers_subcmd/sp.rb,
2276
- processor/command/list.rb,
2277
- processor/command/set_subcmd/auto_subcmd/eval.rb,
2278
- processor/command/set_subcmd/auto_subcmd/irb.rb,
2279
- processor/command/set_subcmd/auto_subcmd/list.rb,
2280
- processor/command/set_subcmd/debug_subcmd/dbgr.rb,
2281
- processor/command/set_subcmd/debug_subcmd/except.rb,
2282
- processor/command/set_subcmd/debug_subcmd/macro.rb,
2283
- processor/command/set_subcmd/debug_subcmd/skip.rb,
2284
- processor/command/set_subcmd/debug_subcmd/stack.rb,
2285
- processor/command/set_subcmd/substitute_subcmd/string.rb,
2286
- processor/command/set_subcmd/trace_subcmd/print.rb,
2287
- processor/command/show_subcmd/auto_subcmd/eval.rb,
2288
- processor/command/show_subcmd/auto_subcmd/irb.rb,
2289
- processor/command/show_subcmd/auto_subcmd/list.rb,
2290
- processor/mock.rb: Start to DRY standalone-code.
2340
+ * : commit 55fbdeb97333f624b02b58a9bf289a0d2f4bb981 Author: rocky
2341
+ <rockyb@rubyforge.org> Date: Sun Nov 28 03:07:35 2010 -0500
2291
2342
 
2292
2343
  2010-11-26 rocky <rockyb@rubyforge.org>
2293
2344
 
@@ -2301,16 +2352,8 @@
2301
2352
 
2302
2353
  2010-11-13 rocky <rockyb@rubyforge.org>
2303
2354
 
2304
- Merge branch 'master' of github.com:rocky/rb-trepanning
2305
-
2306
- 2010-11-13 rocky <rockyb@rubyforge.org>
2307
-
2308
- * io/base_io.rb, io/null_output.rb, processor/command/continue.rb,
2309
- processor/command/set_subcmd/auto.rb, processor/command/source.rb,
2310
- processor/default.rb, processor/frame.rb, processor/location.rb,
2311
- processor/validate.rb: "source -q" silences all prompt and debugger
2312
- messages now. Fix bugs in output.eof auto.rb: remove
2313
- no-longer-needed assignment
2355
+ * : commit b1a68214f2586ae7de9d9d48bd241a6aef1feedb Author: rocky
2356
+ <rockyb@rubyforge.org> Date: Sat Nov 13 05:38:33 2010 -0500
2314
2357
 
2315
2358
  2010-11-12 rocky <rockyb@rubyforge.org>
2316
2359
 
@@ -2322,8 +2365,8 @@
2322
2365
  processor/command/restart.rb,
2323
2366
  processor/command/show_subcmd/args.rb, processor/location.rb,
2324
2367
  test/unit/test-app-run.rb: Greatly simplify restart code and is more
2325
- reliable -- via new patch to 1.9.2. Thanks to Evan Phoenix for
2326
- suggesting and doing in Rubinius. .gemspec: need to make sure we
2368
+ reliable -- via new patch to 1.9.2. Thanks to Evan Phoenix for
2369
+ suggesting and doing in Rubinius. .gemspec: need to make sure we
2327
2370
  have a later Ruby 1.9.2 patch
2328
2371
 
2329
2372
  2010-11-09 rocky <rockyb@rubyforge.org>
@@ -2333,18 +2376,12 @@
2333
2376
  2010-11-09 rocky <rockyb@rubyforge.org>
2334
2377
 
2335
2378
  * processor/command/finish.rb, processor/command/list.rb,
2336
- processor/frame.rb: Fix "list . NUM". finish.rb: fix doc string
2337
-
2338
- 2010-11-08 rocky <rockyb@rubyforge.org>
2339
-
2340
- Merge branch 'master' of github.com:rocky/rb-trepanning
2379
+ processor/frame.rb: Fix "list . NUM". finish.rb: fix doc string
2341
2380
 
2342
2381
  2010-11-08 rocky <rockyb@rubyforge.org>
2343
2382
 
2344
- * test/functional/fn_helper.rb, test/functional/test-break.rb,
2345
- test/functional/test-condition.rb, test/functional/test-delete.rb:
2346
- list.rb: handle "list . count" and "list start end". Sync with
2347
- rbx-trepanning.
2383
+ * : commit 2926ca92715f2034ef9b560f784b4ab97ddfbea4 Author: rocky
2384
+ <rockyb@rubyforge.org> Date: Mon Nov 8 03:38:37 2010 -0500
2348
2385
 
2349
2386
  2010-11-04 rocky <rockyb@rubyforge.org>
2350
2387
 
@@ -2353,7 +2390,6 @@
2353
2390
  processor/command/show_subcmd/hidelevel.rb, processor/default.rb:
2354
2391
  Replace "set/show debugstack" with more general "set/show hidestack"
2355
2392
 
2356
-
2357
2393
  2010-10-27 rocky <rockyb@rubyforge.org>
2358
2394
 
2359
2395
  * NEWS, lib/trepanning.rb: Some small omissions.
@@ -2373,11 +2409,8 @@
2373
2409
 
2374
2410
  2010-10-21 rocky <rockyb@rubyforge.org>
2375
2411
 
2376
- Merge branch 'master' of github.com:rocky/rb-trepanning
2377
-
2378
- 2010-10-20 rocky <rockyb@rubyforge.org>
2379
-
2380
- * processor/validate.rb: Comment typo.
2412
+ * : commit 956df3be0f3f3a6c77671e6be49ef4397da12ffb Author: rocky
2413
+ <rockyb@rubyforge.org> Date: Wed Oct 20 20:32:49 2010 -0400
2381
2414
 
2382
2415
  2010-10-20 rocky <rockyb@rubyforge.org>
2383
2416
 
@@ -2394,23 +2427,8 @@
2394
2427
 
2395
2428
  2010-10-19 rocky <rockyb@rubyforge.org>
2396
2429
 
2397
- Merge branch 'master' of github.com:rocky/rb-trepanning
2398
- Conflicts: processor/command/finish.rb
2399
-
2400
- 2010-10-19 rocky <rockyb@rubyforge.org>
2401
-
2402
- * .gitignore, app/frame.rb, lib/trepanning.rb,
2403
- processor/command/alias.rb, processor/command/backtrace.rb,
2404
- processor/command/break.rb, processor/command/continue.rb,
2405
- processor/command/directory.rb, processor/command/exit.rb,
2406
- processor/command/finish.rb, processor/command/help.rb,
2407
- processor/command/irb.rb, processor/command/kill.rb,
2408
- processor/command/next.rb, processor/command/nocache.rb,
2409
- processor/command/quit.rb, processor/command/raise.rb,
2410
- processor/command/restart.rb, processor/command/save.rb,
2411
- processor/frame.rb, processor/main.rb,
2412
- test/functional/test-fn_helper.rb: Add test of test-fn_helper.rb
2413
- Appease the RDoc God.
2430
+ * : commit f7f10e99c12dfef4148b9c34297f6b2909407527 Author: rocky
2431
+ <rockyb@rubyforge.org> Date: Tue Oct 19 12:17:19 2010 -0400
2414
2432
 
2415
2433
  2010-10-18 rocky <rockyb@rubyforge.org>
2416
2434
 
@@ -2456,16 +2474,8 @@
2456
2474
 
2457
2475
  2010-10-16 rocky <rockyb@rubyforge.org>
2458
2476
 
2459
- Merge branch 'master' of github.com:rocky/rb-trepanning
2460
-
2461
- 2010-10-16 rocky <rockyb@rubyforge.org>
2462
-
2463
- * processor/command/backtrace.rb, processor/command/base/cmd.rb,
2464
- processor/command/break.rb, processor/command/condition.rb,
2465
- processor/command/continue.rb, processor/command/debug.rb,
2466
- processor/command/finish.rb, processor/command/irb.rb,
2467
- processor/command/source.rb: Add Trepan::Command#name and dry code
2468
- with it.
2477
+ * : commit 8d11c5bd1a588223a84a490687c214f42bcb40c8 Author: rocky
2478
+ <rockyb@rubyforge.org> Date: Sat Oct 16 10:18:06 2010 -0400
2469
2479
 
2470
2480
  2010-10-14 rocky <rockyb@rubyforge.org>
2471
2481
 
@@ -2474,25 +2484,13 @@
2474
2484
 
2475
2485
  2010-10-14 rocky <rockyb@rubyforge.org>
2476
2486
 
2477
- Merge branch 'master' of github.com:rocky/rb-trepanning
2478
-
2479
- 2010-10-14 rocky <rockyb@rubyforge.org>
2480
-
2481
- * processor/command/pr.rb, processor/command/print.rb,
2482
- processor/running.rb, test/functional/test-raise.rb,
2483
- test/functional/test-return.rb, test/unit/test-proc-main.rb:
2484
- debugger "print" (print truncating long output) renamed to "pr"
2485
- since p and print are both Ruby commands. running.rb: Typo |= -> ||=
2486
-
2487
+ * : commit b75fbef2155a56d7c5db6cf92a069b037f5ebce6 Author: rocky
2488
+ <rockyb@rubyforge.org> Date: Thu Oct 14 23:46:16 2010 -0400
2487
2489
 
2488
2490
  2010-10-13 rocky <rockyb@rubyforge.org>
2489
2491
 
2490
- Merge branch 'master' of github.com:rocky/rb-trepanning
2491
-
2492
- 2010-10-13 rocky <rockyb@rubyforge.org>
2493
-
2494
- * app/irb.rb, data/irbrc, processor/command/irb.rb: Keep in sync
2495
- with rbx-trepanning.
2492
+ * : commit f82c642a2f927aae66dc395284bdfe844dac43f5 Author: rocky
2493
+ <rockyb@rubyforge.org> Date: Wed Oct 13 10:52:05 2010 -0400
2496
2494
 
2497
2495
  2010-10-13 rocky <rockyb@rubyforge.org>
2498
2496
 
@@ -2519,23 +2517,13 @@
2519
2517
 
2520
2518
  2010-10-12 rocky <rockyb@rubyforge.org>
2521
2519
 
2522
- Merge branch 'master' of github.com:rocky/rb-trepanning
2523
-
2524
- 2010-10-12 rocky <rockyb@rubyforge.org>
2525
-
2526
- * processor/frame.rb, test/unit/test-proc-frame.rb: A little cleaner
2527
- I think due to sync with rbx-trepanning.
2520
+ * : commit d0414dd55cfcf924fe5b464e060682c811800bae Author: rocky
2521
+ <rockyb@rubyforge.org> Date: Tue Oct 12 18:11:00 2010 -0400
2528
2522
 
2529
2523
  2010-10-11 rocky <rockyb@rubyforge.org>
2530
2524
 
2531
- Merge branch 'master' of github.com:rocky/rb-trepanning
2532
-
2533
- 2010-10-10 rocky <rockyb@rubyforge.org>
2534
-
2535
- * .gemspec, ChangeLog, NEWS, Rakefile, lib/trepanning.rb: Rakefile:
2536
- remove weird self-modifying double loop lib/trepanning.rb: now in
2537
- 0.0.5.git .gemspec: Add add for rbx-trepanning NEWS: forgot to
2538
- commit from before.
2525
+ * : commit 50c3333d93dbeb70c900417b778d628395c9cc95 Author: rocky
2526
+ <rockyb@rubyforge.org> Date: Sun Oct 10 22:11:52 2010 -0400
2539
2527
 
2540
2528
  2010-10-08 rocky <rockyb@rubyforge.org>
2541
2529
 
@@ -2545,7 +2533,6 @@
2545
2533
 
2546
2534
  * data/custom_require.rb, processor/main.rb: Remap custom_require.rb
2547
2535
 
2548
-
2549
2536
  2010-10-08 rocky <rockyb@rubyforge.org>
2550
2537
 
2551
2538
  * Makefile: Fix up boilerplate Makefile
@@ -2583,28 +2570,17 @@
2583
2570
 
2584
2571
  2010-10-05 rocky <rockyb@rubyforge.org>
2585
2572
 
2586
- Merge branch 'master' of github.com:rocky/rb-trepanning
2587
-
2588
- 2010-10-05 rocky <rockyb@rubyforge.org>
2589
-
2590
- * app/breakpoint.rb, app/brkptmgr.rb,
2591
- test/functional/test-break.rb, test/functional/test-condition.rb,
2592
- test/functional/test-delete.rb, test/unit/test-app-brkpt.rb,
2593
- test/unit/test-cmd-break.rb: app/breakpoint.rb: respect passed
2594
- breakpoint :id option. app/brkptmgr.rb: remove globalness of setting
2595
- breakpoint ids test/* adjust as is now appropriate.
2573
+ * : commit 3d425bf22f435f5498578059d59e800217ff223f Author: rocky
2574
+ <rockyb@rubyforge.org> Date: Tue Oct 5 05:46:56 2010 -0400
2596
2575
 
2597
2576
  2010-10-04 rocky <rockyb@rubyforge.org>
2598
2577
 
2599
2578
  * processor/breakpoint.rb, processor/eval.rb,
2600
2579
  processor/validate.rb, test/unit/test-cmd-break.rb: We now scan
2601
- parent instruction sequences to find breakpoint line numbers. Note:
2602
- this requires an updated rb-threadframe from git. For example,
2603
- suppose the code is: xx = 'break here' 1.times do
2604
- debugger_is_here end If you are at the line of
2605
- "debugger_is_here", the xx line is not part of that instruction
2606
- sequence, but can be found by searching its parent instruction
2607
- sequence.
2580
+ parent instruction sequences to find breakpoint line numbers. Note:
2581
+ 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
2582
+ part of that instruction sequence, but can be found by searching its
2583
+ parent instruction sequence.
2608
2584
 
2609
2585
  2010-10-04 rocky <rockyb@rubyforge.org>
2610
2586
 
@@ -2634,13 +2610,13 @@
2634
2610
 
2635
2611
  * app/mock.rb, processor/default.rb, processor/location.rb,
2636
2612
  processor/validate.rb: processor/*.rb: Add gdb-like "directory"
2637
- command. Code was in rbx-trepanning. app/mock.rb: Need to be more
2613
+ command. Code was in rbx-trepanning. app/mock.rb: Need to be more
2638
2614
  realistic now.
2639
2615
 
2640
2616
  2010-09-30 rocky <rockyb@rubyforge.org>
2641
2617
 
2642
2618
  * processor/validate.rb, test/unit/test-cmd-break.rb: Reinstate more
2643
- flexible file/line breakpoint parsing. Be more lenient about file
2619
+ flexible file/line breakpoint parsing. Be more lenient about file
2644
2620
  name matching, i.e. use basenames.
2645
2621
 
2646
2622
  2010-09-29 rocky <rockyb@rubyforge.org>
@@ -2650,19 +2626,13 @@
2650
2626
 
2651
2627
  2010-09-28 rocky <rockyb@rubyforge.org>
2652
2628
 
2653
- Merge branch 'master' of github.com:rocky/rb-trepanning
2654
-
2655
- 2010-09-28 rocky <rockyb@rubyforge.org>
2656
-
2657
- * lib/trepanning.rb, processor/eval.rb: Add VERSION number
2658
-
2659
- 2010-09-28 rocky <rockyb@rubyforge.org>
2660
-
2661
- Merge branch 'master' of github.com:rocky/rb-trepanning
2629
+ * : commit 978ae3024f52c581a3d71c5e334b4226c7bb24ad Author: rocky
2630
+ <rockyb@rubyforge.org> Date: Tue Sep 28 21:35:55 2010 -0400
2662
2631
 
2663
2632
  2010-09-28 rocky <rockyb@rubyforge.org>
2664
2633
 
2665
- * processor/command/source.rb, processor/eval.rb: Small tweaks
2634
+ * : commit cbd98bce731425d5bffef4094ac1ffa5152eaf6b Author: rocky
2635
+ <rockyb@rubyforge.org> Date: Tue Sep 28 21:30:16 2010 -0400
2666
2636
 
2667
2637
  2010-09-27 rocky <rockyb@rubyforge.org>
2668
2638
 
@@ -2739,7 +2709,6 @@
2739
2709
  * Rakefile, app/options.rb, bin/trepan, lib/trepanning.rb: Small
2740
2710
  changes and try to keep in better compatibility/sync with rubinius.
2741
2711
 
2742
-
2743
2712
  2010-09-25 rocky <rockyb@rubyforge.org>
2744
2713
 
2745
2714
  * processor/command/show_subcmd/args.rb: Beef up demo code for show
@@ -2748,19 +2717,8 @@
2748
2717
 
2749
2718
  2010-09-25 rocky <rockyb@rubyforge.org>
2750
2719
 
2751
- Merge branch 'master' of github.com:rocky/rbdbgr
2752
-
2753
- 2010-09-25 rocky <rockyb@rubyforge.org>
2754
-
2755
- * app/run.rb, processor/command/exit.rb,
2756
- processor/command/info_subcmd/program.rb, processor/command/ps.rb,
2757
- processor/command/show_subcmd/max_subcmd/stack.rb,
2758
- processor/command/show_subcmd/max_subcmd/string.rb,
2759
- processor/command/show_subcmd/max_subcmd/width.rb,
2760
- processor/main.rb, test/unit/test-app-run.rb: app/run.rb: add demo
2761
- and unit test processor/command/exit.rb: allow xxx! and make
2762
- compatible with 1.8 Other small cleanups and synchronization with
2763
- rbx-trepanning.
2720
+ * : commit e2e8c3fb71b7de8e62c777e33294ce2ecb710c86 Author: rocky
2721
+ <rockyb@rubyforge.org> Date: Sat Sep 25 11:22:23 2010 -0400
2764
2722
 
2765
2723
  2010-09-24 rocky <rockyb@rubyforge.org>
2766
2724
 
@@ -2996,14 +2954,13 @@
2996
2954
  test/unit/test-proc-load_cmds.rb, test/unit/test-proc-main.rb,
2997
2955
  test/unit/test-proc-validate.rb, test/unit/test-subcmd-help.rb:
2998
2956
  Debugger -> Trepan. bin/rbdbgr -> bin/trepan. Package name is now
2999
- trepan. Hmm. may change the package name soon. There are still many
2957
+ trepan. Hmm. may change the package name soon. There are still many
3000
2958
  other reminants of rbdbgr. All in due time...
3001
2959
 
3002
2960
  2010-09-21 rocky <rockyb@rubyforge.org>
3003
2961
 
3004
2962
  * Makefile, app/Makefile, lib/Makefile: Makefiles were a little off.
3005
2963
 
3006
-
3007
2964
  2010-09-21 rocky <rockyb@rubyforge.org>
3008
2965
 
3009
2966
  * .gemspec, ChangeLog, Rakefile, lib/rbdbgr.rb: Add .gemspec and
@@ -3201,16 +3158,12 @@
3201
3158
  processor/command/macro.rb: sp.rb: run() Make use fo new
3202
3159
  Threadframe#sp_size. SIZE lists number of entries in stack; we now
3203
3160
  check for accessing outside of the range, No args lists all stack
3204
- entries. macro.rb: Tidy "macro defined" message.
3205
-
3206
- 2010-08-20 R. Bernstein <rocky@gnu.org>
3207
-
3208
- Merge branch 'master' of github.com:rocky/rbdbgr
3161
+ entries. macro.rb: Tidy "macro defined" message.
3209
3162
 
3210
3163
  2010-08-20 R. Bernstein <rocky@gnu.org>
3211
3164
 
3212
- * lib/rbdbgr.rb: debugger(): exec_event_tracing no longer exists and
3213
- frame.trace_off is better.
3165
+ * : commit 1aa24b2b7d105f4491cf3ebd8c8bc57f0f29246c Author: R.
3166
+ Bernstein <rocky@gnu.org> Date: Fri Aug 20 19:58:09 2010 -0400
3214
3167
 
3215
3168
  2010-08-11 rocky <rockyb@rubyforge.org>
3216
3169
 
@@ -3221,7 +3174,7 @@
3221
3174
 
3222
3175
  * app/display.rb, processor/command/display.rb:
3223
3176
  processor/command/display.rb: show initial value when setting
3224
- display - gdb does. app/display.rb: DRY code a little.
3177
+ display - gdb does. app/display.rb: DRY code a little.
3225
3178
 
3226
3179
  2010-08-11 R. Bernstein <rocky@gnu.org>
3227
3180
 
@@ -3242,22 +3195,13 @@
3242
3195
 
3243
3196
  2010-07-06 rocky <rockyb@rubyforge.org>
3244
3197
 
3245
- Merge branch 'master' of github.com:rocky/rbdbgr
3246
-
3247
- 2010-07-06 rocky <rockyb@rubyforge.org>
3248
-
3249
- * processor/command/frame.rb: 'frame' command help tweak.
3250
-
3251
- 2010-06-20 rocky <rockyb@rubyforge.org>
3252
-
3253
- Merge branch 'master' of github.com:rocky/rbdbgr
3198
+ * : commit 2757e57310a7e236962a660e7f07d8ac5f995c62 Author: rocky
3199
+ <rockyb@rubyforge.org> Date: Tue Jul 6 06:17:43 2010 -0400
3254
3200
 
3255
3201
  2010-06-20 rocky <rockyb@rubyforge.org>
3256
3202
 
3257
- * app/disassemble.rb,
3258
- processor/command/set_subcmd/substitute_subcmd/string.rb,
3259
- test/unit/test-app-disassemble.rb: string.rb: help doc correction
3260
- *disasemble.rb: One more unit test. Tidy demo output.
3203
+ * : commit 6858909c9938841e1f579a554e5ee72b842acf22 Author: rocky
3204
+ <rockyb@rubyforge.org> Date: Sun Jun 20 04:50:53 2010 +0200
3261
3205
 
3262
3206
  2010-06-10 rocky <rockyb@rubyforge.org>
3263
3207
 
@@ -3310,7 +3254,7 @@
3310
3254
 
3311
3255
  * app/condition.rb, processor/command/condition.rb,
3312
3256
  processor/command/step.rb, processor/frame.rb,
3313
- processor/validate.rb: Work on thread support. validate.rb: don't
3257
+ processor/validate.rb: Work on thread support. validate.rb: don't
3314
3258
  show the frames of the event processor of non-current threads
3315
3259
  step.rb add "step thread" to step within the thread.
3316
3260
  app/condition.rb: Rbdbgr -> Debugger::Conditon module.
@@ -3330,7 +3274,6 @@
3330
3274
  processor/command/info_subcmd/thread.rb, processor/frame.rb,
3331
3275
  processor/validate.rb: Work on showing and switching thread frames.
3332
3276
 
3333
-
3334
3277
  2010-05-15 rocky <rockyb@rubyforge.org>
3335
3278
 
3336
3279
  * processor/command/debug.rb: No need to fiddle with prompt in
@@ -3338,12 +3281,8 @@
3338
3281
 
3339
3282
  2010-05-15 rocky <rockyb@rubyforge.org>
3340
3283
 
3341
- Merge branch 'master' of github.com:rocky/rbdbgr
3342
-
3343
- 2010-05-15 rocky <rockyb@rubyforge.org>
3344
-
3345
- * processor/command/show_subcmd/trace_subcmd/buffer.rb: Setting name
3346
- was renamed a while ago. Didn't catch this then.
3284
+ * : commit da2a0b67fbbc9973b62c98b21a7888b23afc802d Author: rocky
3285
+ <rockyb@rubyforge.org> Date: Sat May 15 21:44:37 2010 -0400
3347
3286
 
3348
3287
  2010-05-14 rocky <rockyb@rubyforge.org>
3349
3288
 
@@ -3353,8 +3292,8 @@
3353
3292
 
3354
3293
  * lib/rbdbgr.rb, processor/default.rb,
3355
3294
  test/functional/test-immediate-step-bug.rb: Add Kernel#rbdbgr as a
3356
- simple way to call the debugger. More trace disabling inside
3357
- debugger code. max stack default set back to 10 (from 16).
3295
+ simple way to call the debugger. More trace disabling inside
3296
+ debugger code. max stack default set back to 10 (from 16).
3358
3297
 
3359
3298
  2010-05-13 R. Bernstein <rockyb@rubyforge.org>
3360
3299
 
@@ -3363,7 +3302,7 @@
3363
3302
  processor/command/set_subcmd/max.rb, test/unit/test-app-util.rb:
3364
3303
  Debugging in rails now works - tested only with rails 2 and mongrel.
3365
3304
  Turn off tracing in debugger setup (new, debugger) until better
3366
- solutions are implemented. Some stray debug statements a minor bug
3305
+ solutions are implemented. Some stray debug statements a minor bug
3367
3306
  fixes, e.g. "set max stack" was printing 2 times as many entries.
3368
3307
 
3369
3308
  2010-05-11 rocky <rockyb@rubyforge.org>
@@ -3378,7 +3317,7 @@
3378
3317
  test/unit/test-app-brkpt.rb, test/unit/test-app-brkptmgr.rb,
3379
3318
  test/unit/test-app-disassemble.rb, test/unit/test-app-frame.rb,
3380
3319
  test/unit/test-app-thread.rb: Work on "info thread <num>". More in
3381
- needed. Also one breakpoint test fails probably in conjunction with
3320
+ needed. Also one breakpoint test fails probably in conjunction with
3382
3321
  changes after Ruby SVN 27660 and 27690.
3383
3322
 
3384
3323
  2010-05-10 R. Bernstein <rockyb@rubyforge.org>
@@ -3403,13 +3342,11 @@
3403
3342
  processor/command/set_subcmd/debug_subcmd/stack.rb,
3404
3343
  processor/validate.rb, test/functional/test-debugger-call-bug.rb:
3405
3344
  One of several bugs keeping Debugger#debugger from working more than
3406
- the first time. More fixes to follow. debug_subcmd/stack.rb:
3407
- Setting wrong instance variable interface/user.rb, app/core.rb: move
3408
- finalize from user to Debugger where we can make sure we've turned
3409
- of tracing beforehand. validate: we are getting into a recursive
3410
- trace when removing debugger iseqs. Omit until we figure out a
3411
- better fix. app/file.rb: guard against adding to ISEQ__ hash while
3412
- enumerating over it.
3345
+ the first time. More fixes to follow. debug_subcmd/stack.rb: Setting wrong instance variable
3346
+ interface/user.rb, app/core.rb: move finalize from user to Debugger
3347
+ where we can make sure we've turned of tracing beforehand. validate: we are getting into a recursive trace when removing
3348
+ debugger iseqs. Omit until we figure out a better fix. app/file.rb: guard against adding to ISEQ__ hash while enumerating
3349
+ over it.
3413
3350
 
3414
3351
  2010-05-07 rocky <rockyb@rubyforge.org>
3415
3352
 
@@ -3419,11 +3356,8 @@
3419
3356
 
3420
3357
  2010-05-07 R. Bernstein <rockyb@rubyforge.org>
3421
3358
 
3422
- Merge branch 'master' of github.com:rocky/rbdbgr
3423
-
3424
- 2010-05-07 rocky <rockyb@rubyforge.org>
3425
-
3426
- * app/core.rb: Small cleanups.
3359
+ * : commit 9efe1dcbf996993382eb50fb901f8d396dcb6608 Author: rocky
3360
+ <rockyb@rubyforge.org> Date: Fri May 7 18:40:33 2010 -0400
3427
3361
 
3428
3362
  2010-05-07 rocky <rockyb@rubyforge.org>
3429
3363
 
@@ -3513,7 +3447,7 @@
3513
3447
  processor/command/show_subcmd/debug_subcmd/stack.rb,
3514
3448
  processor/default.rb, processor/main.rb,
3515
3449
  test/unit/test-base-subcmd.rb: More work on macros. Check validity
3516
- of expansion result. Add macro expansion debugging.
3450
+ of expansion result. Add macro expansion debugging.
3517
3451
 
3518
3452
  2010-05-04 rocky <rockyb@rubyforge.org>
3519
3453
 
@@ -3598,7 +3532,7 @@
3598
3532
  processor/command/show_subcmd/trace_subcmd/buffer.rb,
3599
3533
  processor/default.rb, processor/msg.rb,
3600
3534
  test/unit/test-base-subcmd.rb: set maxstring -> set max[imum]
3601
- string. set width -> set max width. Still need to handle show.
3535
+ string. set width -> set max width. Still need to handle show.
3602
3536
 
3603
3537
  2010-05-03 rocky <rockyb@rubyforge.org>
3604
3538
 
@@ -3631,7 +3565,7 @@
3631
3565
 
3632
3566
  * app/core.rb, processor/command/debug.rb, processor/main.rb:
3633
3567
  core.rb: add mutex to ensure we don't switch threads while
3634
- debugging. debug.rb: hide setup code into the debugger. main.rb:
3568
+ debugging. debug.rb: hide setup code into the debugger. main.rb:
3635
3569
  don't debug into hidden frames
3636
3570
 
3637
3571
  2010-04-29 rocky <rockyb@rubyforge.org>
@@ -3669,8 +3603,7 @@
3669
3603
  * processor/command/print.rb, processor/main.rb: print.rb: now
3670
3604
  preserves spacing given in command main.rb: now captures command
3671
3605
  before aliasing (and later macro expansion) as well as string of
3672
- first token given and remaining string after first token. Handling
3673
- macros is where we are going with this.
3606
+ first token given and remaining string after first token. Handling macros is where we are going with this.
3674
3607
 
3675
3608
  2010-04-25 rocky <rockyb@rubyforge.org>
3676
3609
 
@@ -3681,7 +3614,6 @@
3681
3614
  * processor/command/reload.rb,
3682
3615
  processor/command/reload_subcmd/command.rb: Add a "reload command".
3683
3616
 
3684
-
3685
3617
  2010-04-23 rocky <rockyb@rubyforge.org>
3686
3618
 
3687
3619
  * processor/default.rb, processor/load_cmds.rb, processor/mock.rb,
@@ -3749,14 +3681,8 @@
3749
3681
 
3750
3682
  2010-04-14 rocky <rockyb@rubyforge.org>
3751
3683
 
3752
- Merge branch 'master' of git@github.com:rocky/rbdbgr
3753
-
3754
- 2010-04-14 rocky <rockyb@rubyforge.org>
3755
-
3756
- * app/brkpt.rb, app/brkptmgr.rb, processor/breakpoint.rb,
3757
- test/unit/test-app-brkpt.rb, test/unit/test-app-brkptmgr.rb: Chagne
3758
- Breakpoint.new to take an options hash and add option to set what
3759
- kind of breakpoint: line/offset.
3684
+ * : commit 7f31efad73be0d13dfb4596e88bf33d18b7b85cd Author: rocky
3685
+ <rockyb@rubyforge.org> Date: Wed Apr 14 06:50:37 2010 -0400
3760
3686
 
3761
3687
  2010-04-13 rocky <rockyb@rubyforge.org>
3762
3688
 
@@ -3860,8 +3786,8 @@
3860
3786
  test/unit/test-proc-help.rb, test/unit/test-proc-hook.rb,
3861
3787
  test/unit/test-proc-main.rb, test/unit/test-proc-validate.rb,
3862
3788
  test/unit/test-subcmd-help.rb: require_relative %w(a b c) =>
3863
- require_relative 'a/b/c' Starting with SVN revision #26959
3864
- require_relative no longer accepts an array argument.
3789
+ require_relative 'a/b/c' Starting with SVN revision #26959 require_relative no longer accepts
3790
+ an array argument.
3865
3791
 
3866
3792
  2010-04-03 rocky <rockyb@rubyforge.org>
3867
3793
 
@@ -4030,10 +3956,10 @@
4030
3956
 
4031
3957
  * interface/script.rb, processor/command/help.rb,
4032
3958
  processor/default.rb, processor/main.rb: Some small script (debugger
4033
- "source" command) fixes. script.rb: Don't show debugger output if
4034
- running a script. main.rb; Slightly better handling of blank command
4035
- lines help.rb: don't show aliases for a commmand where help on
4036
- subcommands were asked for.
3959
+ "source" command) fixes. script.rb: Don't show debugger output if
3960
+ running a script. main.rb; Slightly better handling of blank
3961
+ command lines help.rb: don't show aliases for a commmand where help
3962
+ on subcommands were asked for.
4037
3963
 
4038
3964
  2010-03-20 rocky <rockyb@rubyforge.org>
4039
3965
 
@@ -4067,9 +3993,9 @@
4067
3993
  processor/main.rb, test/functional/fn_helper.rb,
4068
3994
  test/functional/test-delete.rb, test/functional/test-finish.rb,
4069
3995
  test/functional/test-step.rb: New 'raise' command which raises an
4070
- exception in the debugged program. The debugged-program's return
4071
- values are now prefaced with R=> rather than =>. Hopefully this
4072
- makes things clearer while still somewhat intuitive.
3996
+ exception in the debugged program. The debugged-program's return values are now prefaced with R=>
3997
+ rather than =>. Hopefully this makes things clearer while still
3998
+ somewhat intuitive.
4073
3999
 
4074
4000
  2010-03-14 rocky <rockyb@rubyforge.org>
4075
4001
 
@@ -4091,15 +4017,15 @@
4091
4017
  test/functional/test-condition.rb, test/functional/test-delete.rb,
4092
4018
  test/functional/test-finish.rb, test/functional/test-next.rb,
4093
4019
  test/functional/test-step.rb, test/functional/test-trace-var.rb:
4094
- Show exception object when we have 'raise' event. location output
4095
- has changed from prior commit. Track in test cases. Show exception
4020
+ Show exception object when we have 'raise' event. location output
4021
+ has changed from prior commit. Track in test cases. Show exception
4096
4022
  object on 'raise' exception.
4097
4023
 
4098
4024
  2010-03-13 rocky <rockyb@rubyforge.org>
4099
4025
 
4100
4026
  * app/frame.rb, processor/command/info_subcmd/program.rb,
4101
4027
  processor/hook.rb, processor/location.rb, processor/main.rb: Show
4102
- more information in location. If a call, the method name and params
4028
+ more information in location. If a call, the method name and params
4103
4029
  If a return the return value.
4104
4030
 
4105
4031
  2010-03-13 rocky <rockyb@rubyforge.org>
@@ -4107,13 +4033,12 @@
4107
4033
  * app/default.rb, lib/rbdbgr.rb: Now that we have a patch for
4108
4034
  ruby-1.9 to fix SEGV's in eval, debug_str works. Some minor tweaks.
4109
4035
 
4110
-
4111
4036
  2010-03-13 rocky <rockyb@rubyforge.org>
4112
4037
 
4113
4038
  * app/irb.rb, data/irbrc, processor/command/irb.rb: irb.rb:
4114
- Syncronize IRB's BACK_TRACE_LIMIT with the debugger's. irbrc: "file"
4115
- for eval shouldn't contain ":" since that causes IRB to think to
4116
- traceback are IRB bugs.
4039
+ Syncronize IRB's BACK_TRACE_LIMIT with the debugger's. irbrc:
4040
+ "file" for eval shouldn't contain ":" since that causes IRB to think
4041
+ to traceback are IRB bugs.
4117
4042
 
4118
4043
  2010-03-11 rocky <rockyb@rubyforge.org>
4119
4044
 
@@ -4166,7 +4091,7 @@
4166
4091
 
4167
4092
  * app/irb.rb, data/irbrc, processor/command/irb.rb,
4168
4093
  processor/main.rb: Add command inside irb: dbgr to issue debugger
4169
- statements. Dry irb code a little.
4094
+ statements. Dry irb code a little.
4170
4095
 
4171
4096
  2010-03-11 rocky <rockyb@rubyforge.org>
4172
4097
 
@@ -4218,7 +4143,7 @@
4218
4143
  processor/command/set_subcmd/substitute_subcmd/eval.rb,
4219
4144
  processor/command/up.rb, processor/frame.rb,
4220
4145
  test/unit/test-proc-frame.rb: frame.rb, iseq.rb: use/show SHA1's for
4221
- instruction sequences. {up,down,frame,eval,stack}.rb: DRY code.
4146
+ instruction sequences. {up,down,frame,eval,stack}.rb: DRY code.
4222
4147
  eval.rb, frame.rb: allow a frame parameter to eval.
4223
4148
 
4224
4149
  2010-03-09 rocky <rockyb@rubyforge.org>
@@ -4227,8 +4152,7 @@
4227
4152
  processor/command/set_subcmd/substitute_subcmd/eval.rb,
4228
4153
  processor/frame.rb, processor/location.rb, processor/main.rb:
4229
4154
  Automatic eval string remapping to a file in "list" stack and
4230
- location listings. Manual remapping too via "set substitute eval".
4231
- Todo possibly remove set substitute eval or change it to take a
4155
+ location listings. Manual remapping too via "set substitute eval". Todo possibly remove set substitute eval or change it to take a
4232
4156
  frame #. Work in rb-threadframe to get sha1/checksum of iseq instead
4233
4157
  of inspect name.
4234
4158
 
@@ -4242,7 +4166,7 @@
4242
4166
  test/functional/test-delete.rb, test/functional/test-finish.rb,
4243
4167
  test/functional/test-step.rb: main.rb: auto-eval output looks more
4244
4168
  like irb using inspect and prefaced with => print.rb: Add print
4245
- command which uses safe-repr for output. eaval.rb: add a kind of
4169
+ command which uses safe-repr for output. eaval.rb: add a kind of
4246
4170
  eval that field hide exceptions.
4247
4171
 
4248
4172
  2010-03-08 rocky <rockyb@rubyforge.org>
@@ -4274,13 +4198,12 @@
4274
4198
  * app/default.rb, app/options.rb, bin/rbdbgr, lib/rbdbgr.rb,
4275
4199
  test/unit/test-app-options.rb: Add --nx and @settings[:nx] options.
4276
4200
 
4277
-
4278
4201
  2010-03-08 R. Bernstein <rocky@gnu.org>
4279
4202
 
4280
4203
  * interface/script.rb, lib/rbdbgr.rb: rbdbgr.rb: Bug: --command used
4281
- wrong interface. singleton methods debug and debug_str:
4282
- pass options to Debugger.new. Set different off on debug_s
4283
- tr by default
4204
+ wrong interface. singleton methods debug and debug_str: pass options
4205
+ to Debugger.new. Set different off on debug_s tr by
4206
+ default
4284
4207
 
4285
4208
  2010-03-07 R. Bernstein <rocky@gnu.org>
4286
4209
 
@@ -4292,9 +4215,8 @@
4292
4215
 
4293
4216
  * app/default.rb, app/options.rb, bin/rbdbgr, lib/rbdbgr.rb,
4294
4217
  test/unit/test-app-options.rb: Start --command option. Not fully
4295
- done yet. options.rb: Fix bug in show_version(). setup_options():
4296
- make more functional in handling of --help and --version.
4297
- lib/rbdbgr.rb: setup options in a way that won't mess up
4218
+ done yet. options.rb: Fix bug in show_version(). setup_options(): make more
4219
+ functional in handling of --help and --version. lib/rbdbgr.rb: setup options in a way that won't mess up
4298
4220
  DEFAULT_CMDLINE_SETTINGS. Accumulate startup-files for --command
4299
4221
  option.
4300
4222
 
@@ -4327,7 +4249,7 @@
4327
4249
 
4328
4250
  * app/core.rb, app/options.rb, bin/rbdbgr, lib/rbdbgr.rb,
4329
4251
  test/unit/test-app-options.rb: Add first rbdbgr option --chdir. Fix
4330
- bugs in handling that. app/core.rb DEFAULT_SETTINGS ->
4252
+ bugs in handling that. app/core.rb DEFAULT_SETTINGS ->
4331
4253
  CORE_DEFAULT_SETTINGS to avoid constant name clashes.
4332
4254
 
4333
4255
  2010-03-01 rocky <rockyb@rubyforge.org>
@@ -4399,13 +4321,13 @@
4399
4321
  processor/command/show_subcmd/debug.rb, profile/irbrc,
4400
4322
  test/unit/test-app-util.rb: Lots of bug fixes and goodness.
4401
4323
  app/frame.rb: was listing C params in reverse order. safe_repr each
4402
- arg was adding a non-existent optional argument
4403
- info_subcmd/args.rb: Fix buggy test for whether params may have
4404
- changed. Also fix wrong C param order.
4405
- Rakefile: forgot to add data directory to distribution profile/irbrc
4406
- -> data/irbrc, app/irb.rb: consolidate files into one directory.
4407
- Data wins app/util.rb: safe_repr now matches quotes and can be told
4408
- what suffix (...) to use rbdbgr.rb: don't debug inside in debug.
4324
+ arg was adding a non-existent optional argument info_subcmd/args.rb:
4325
+ Fix buggy test for whether params may have changed. Also fix wrong
4326
+ C param order. Rakefile: forgot to add data directory to
4327
+ distribution profile/irbrc -> data/irbrc, app/irb.rb: consolidate
4328
+ files into one directory. Data wins app/util.rb: safe_repr now
4329
+ matches quotes and can be told what suffix (...) to use rbdbgr.rb:
4330
+ don't debug inside in debug.
4409
4331
 
4410
4332
  2010-02-26 rocky <rockyb@rubyforge.org>
4411
4333
 
@@ -4483,12 +4405,11 @@
4483
4405
  When this is fixed we can do the below. Until then we need to at
4484
4406
  least remove C calls and returns and possibly other events as well.
4485
4407
 
4486
-
4487
4408
  2010-02-23 rocky <rockyb@rubyforge.org>
4488
4409
 
4489
4410
  * app/file.rb, processor/command/info_subcmd/break.rb,
4490
4411
  processor/validate.rb, test/unit/test-proc-validate.rb: break.rb:
4491
- allow showing breakpoint by number. Improve help. app/file.rb:
4412
+ allow showing breakpoint by number. Improve help. app/file.rb:
4492
4413
  remove Ruby warning messages validate.rb: add int list routine
4493
4414
 
4494
4415
  2010-02-22 rocky <rockyb@rubyforge.org>
@@ -4499,9 +4420,9 @@
4499
4420
  test/functional/test-break.rb, test/functional/test-condition.rb,
4500
4421
  test/functional/test-delete.rb, test/unit/cmd-helper.rb,
4501
4422
  test/unit/test-cmd-break.rb: sp.rb: Add ability to change VM stack
4502
- entries. frame.rb: Fix bug which was messing up class values inside
4423
+ entries. frame.rb: Fix bug which was messing up class values inside
4503
4424
  C functions breakpoint.rb: make message look more like gdb Remove
4504
- some Ruby warning messages. main.rb: remove duplicate
4425
+ some Ruby warning messages. main.rb: remove duplicate
4505
4426
  load_debugger_commands method
4506
4427
 
4507
4428
  2010-02-20 rocky <rockyb@rubyforge.org>
@@ -4535,7 +4456,7 @@
4535
4456
  * app/core.rb, app/display.rb, app/frame.rb,
4536
4457
  processor/command/display.rb, processor/command/where.rb,
4537
4458
  processor/display.rb, processor/hook.rb, processor/main.rb:
4538
- where.rb, frame.rb: C function class name workaround. display.rb,
4459
+ where.rb, frame.rb: C function class name workaround. display.rb,
4539
4460
  hook.rb, main.rb: start display expressions. Not working yet - wait
4540
4461
  for next commit.
4541
4462
 
@@ -4549,7 +4470,7 @@
4549
4470
  * processor/command/info_subcmd/program.rb,
4550
4471
  processor/command/info_subcmd/return.rb,
4551
4472
  processor/command/set_subcmd/return.rb: info_subcmd/program.rb:
4552
- Don't assume we have an iseq. return.rb: remove C-call again, until
4473
+ Don't assume we have an iseq. return.rb: remove C-call again, until
4553
4474
  we can figure out what's wrong.
4554
4475
 
4555
4476
  2010-02-18 rocky <rockyb@rubyforge.org>
@@ -4564,14 +4485,13 @@
4564
4485
  processor/command/set_subcmd/return.rb,
4565
4486
  processor/command/set_subcmd/substitute_subcmd/string.rb,
4566
4487
  processor/mock.rb: return.rb: Add a way to set a method return
4567
- value: "set return". string.rb, different.rb: improve help strings
4488
+ value: "set return". string.rb, different.rb: improve help strings
4568
4489
  mock.rb: set ISEQS__ and SCRIPT_ISEQS__
4569
4490
 
4570
4491
  2010-02-17 rocky <rockyb@rubyforge.org>
4571
4492
 
4572
4493
  * processor/command/info_subcmd/iseq.rb: Bug in running "info iseq"
4573
4494
 
4574
-
4575
4495
  2010-02-17 rocky <rockyb@rubyforge.org>
4576
4496
 
4577
4497
  * processor/command/set_subcmd/different.rb,
@@ -4611,9 +4531,9 @@
4611
4531
  processor/command/enable.rb, processor/load_cmds.rb,
4612
4532
  processor/main.rb: breakpoint.rb: Better invalid breakpoint number
4613
4533
  error messages condition.rb: condition closer to working - but still
4614
- not operational. main.rb, load_cmds.rb: move declaration of commands
4615
- attr_accessor load_cmds.rb: better demo code main.rb: closer to
4616
- interpreting breakpoint condition
4534
+ not operational. main.rb, load_cmds.rb: move declaration of
4535
+ commands attr_accessor load_cmds.rb: better demo code main.rb:
4536
+ closer to interpreting breakpoint condition
4617
4537
 
4618
4538
  2010-02-15 rocky <rockyb@rubyforge.org>
4619
4539
 
@@ -4639,7 +4559,7 @@
4639
4559
  2010-02-15 rocky <rockyb@rubyforge.org>
4640
4560
 
4641
4561
  * README, lib/rbdbgr.rb, processor/command/list.rb: rbdbgr.rb: Add
4642
- Debugger.debug singleton. Set return code properly. list.rb: small
4562
+ Debugger.debug singleton. Set return code properly. list.rb: small
4643
4563
  bug in listing
4644
4564
 
4645
4565
  2010-02-14 rocky <rockyb@rubyforge.org>
@@ -4690,7 +4610,7 @@
4690
4610
 
4691
4611
  * processor/command/help.rb, processor/validate.rb,
4692
4612
  test/unit/test-cmd-help.rb: help.rb: Give help on command name for
4693
- alias. validate.rb: allow lookup for iseq when there is only one.
4613
+ alias. validate.rb: allow lookup for iseq when there is only one.
4694
4614
  test-cmd-help.rb: more extensive testing.
4695
4615
 
4696
4616
  2010-02-12 rocky <rockyb@rubyforge.org>
@@ -4712,7 +4632,7 @@
4712
4632
  2010-02-11 rocky <rockyb@rubyforge.org>
4713
4633
 
4714
4634
  * lib/rbdbgr.rb, profile/irbrc: lib/rbdbgr.rb: Set SCRIPT_ISEQS so
4715
- this be used. profile/irbrc: note that you can use 'q' for quit.
4635
+ this be used. profile/irbrc: note that you can use 'q' for quit.
4716
4636
 
4717
4637
  2010-02-11 rocky <rockyb@rubyforge.org>
4718
4638
 
@@ -4734,8 +4654,8 @@
4734
4654
  * processor/command/set_subcmd/trace.rb,
4735
4655
  processor/command/show_subcmd/basename.rb,
4736
4656
  processor/command/show_subcmd/trace.rb, processor/help.rb:
4737
- show_subcmd/trace.rb: Add 'show trace'. processor/help.rb: fix bug
4738
- in summary help basename.rb: standalone correction. trace.rb: much
4657
+ show_subcmd/trace.rb: Add 'show trace'. processor/help.rb: fix bug
4658
+ in summary help basename.rb: standalone correction. trace.rb: much
4739
4659
  more in the way of describing what's going on in the help.
4740
4660
 
4741
4661
  2010-02-09 rocky <rockyb@rubyforge.org>
@@ -4759,7 +4679,6 @@
4759
4679
  processor/main.rb, test/unit/test-proc-hook.rb,
4760
4680
  test/unit/test-proc-validate.rb: First command hook (autoirb) added.
4761
4681
 
4762
-
4763
4682
  2010-02-07 rocky <rockyb@rubyforge.org>
4764
4683
 
4765
4684
  * processor/hook.rb, processor/main.rb,
@@ -4776,7 +4695,6 @@
4776
4695
 
4777
4696
  * test/functional/test-delete.rb: Add first delete functional test.
4778
4697
 
4779
-
4780
4698
  2010-01-27 rocky <rockyb@rubyforge.org>
4781
4699
 
4782
4700
  * processor/breakpoint.rb, processor/command/delete.rb: Start delete
@@ -4808,8 +4726,8 @@
4808
4726
  processor/command/info_subcmd/file.rb,
4809
4727
  test/functional/test-break.rb, test/unit/test-cmd-endisable.rb: Fix
4810
4728
  bug in info break. Allow bp number to get reset, although what's
4811
- really needed is a rework of the bp and manger interfaces. Get tests
4812
- working again.
4729
+ really needed is a rework of the bp and manger interfaces. Get
4730
+ tests working again.
4813
4731
 
4814
4732
  2009-12-30 rocky <rockyb@rubyforge.org>
4815
4733
 
@@ -4830,7 +4748,7 @@
4830
4748
  * app/core.rb, processor/command/set_subcmd/auto.rb,
4831
4749
  processor/command/set_subcmd/maxstring.rb,
4832
4750
  processor/command/set_subcmd/width.rb: maxstring.rb: dry code. More
4833
- is needed. width.rb: was buggy - should now work core.rb: add core
4751
+ is needed. width.rb: was buggy - should now work core.rb: add core
4834
4752
  event debug setting
4835
4753
 
4836
4754
  2009-12-07 rocky <rockyb@rubyforge.org>
@@ -4848,8 +4766,9 @@
4848
4766
 
4849
4767
  * lib/rbdbgr.rb,
4850
4768
  processor/command/set_subcmd/substitute_subcmd/string.rb: Make
4851
- debugger &block is less broken, or rather broken in another way. Set
4852
- substitute allows you to let it figure out what the iseq name is.
4769
+ debugger &block is less broken, or rather broken in another way.
4770
+ Set substitute allows you to let it figure out what the iseq name
4771
+ is.
4853
4772
 
4854
4773
  2009-12-06 rocky <rockyb@rubyforge.org>
4855
4774
 
@@ -4905,10 +4824,9 @@
4905
4824
  test/unit/test-lib-brkpt.rb: lib/irb.rb -> lib/dbgr-irb.rb The name
4906
4825
  lib/irb.rb causes it to be seen in gem package and conflict with the
4907
4826
  real irb's irb.rb! For now rename. May however move everything
4908
- except rbdbgr.rb out of lib. rbdbgr.rb -> lib/rbdbgr.rb : irb
4909
- wasn't finding "require 'rbdbgr'" because rbdbgr seems to be
4910
- expected to live in lib. Rakefile: Update homepage and make
4911
- description different from summary to keep rake happy.
4827
+ except rbdbgr.rb out of lib. rbdbgr.rb -> lib/rbdbgr.rb : irb wasn't finding "require 'rbdbgr'"
4828
+ because rbdbgr seems to be expected to live in lib. Rakefile: Update homepage and make description different from
4829
+ summary to keep rake happy.
4912
4830
 
4913
4831
  2009-12-06 rocky <rockyb@rubyforge.org>
4914
4832
 
@@ -4984,8 +4902,8 @@
4984
4902
  processor/command/set_subcmd/auto_subcmd/list.rb,
4985
4903
  processor/command/show_subcmd/auto_subcmd/list.rb,
4986
4904
  processor/main.rb, processor/mock.rb, test/functional/test-step.rb:
4987
- Add set/show auto list. In the process added pre-commands hook. Pick
4988
- up SHORT_HELP from help in subcommands.
4905
+ Add set/show auto list. In the process added pre-commands hook.
4906
+ Pick up SHORT_HELP from help in subcommands.
4989
4907
 
4990
4908
  2009-11-06 rocky <rockyb@rubyforge.org>
4991
4909
 
@@ -5013,7 +4931,7 @@
5013
4931
  processor/command/list.rb, processor/validate.rb,
5014
4932
  test/functional/test-break.rb, test/unit/test-cmd-break.rb: Add
5015
4933
  breakpoint indicators in "list" command. Show line number(s) when a
5016
- breakpoint just set. Revise listing to use containers, rather than
4934
+ breakpoint just set. Revise listing to use containers, rather than
5017
4935
  file names.
5018
4936
 
5019
4937
  2009-11-04 rocky <rockyb@rubyforge.org>
@@ -5024,20 +4942,8 @@
5024
4942
 
5025
4943
  2009-11-04 rocky <rockyb@rubyforge.org>
5026
4944
 
5027
- Merge branch 'master' of git@github.com:rocky/rbdbgr
5028
-
5029
- 2009-11-04 rocky <rockyb@rubyforge.org>
5030
-
5031
- * processor/command/base/subsubmgr.rb,
5032
- processor/command/info_subcmd/registers.rb,
5033
- processor/command/info_subcmd/registers_subcmd/helper.rb,
5034
- processor/command/info_subcmd/registers_subcmd/lfp.rb,
5035
- processor/command/info_subcmd/registers_subcmd/pc.rb,
5036
- processor/command/info_subcmd/registers_subcmd/sp.rb,
5037
- processor/validate.rb: subsubmgr.rb: Fix bug in "help command
5038
- subcommand param". validate.rb: bug using wrong hash key.
5039
- registers/*: longer help. lfp.rb: check range. I probably have
5040
- indexing backwards and allow one too many. Perhaps more later.
4945
+ * : commit 560ef74dd49b8cb587b2e47ca81af82e956e406d Author: rocky
4946
+ <rockyb@rubyforge.org> Date: Wed Nov 4 06:08:33 2009 -0500
5041
4947
 
5042
4948
  2009-11-02 R. Bernstein <rocky@gnu.org>
5043
4949
 
@@ -5067,8 +4973,8 @@
5067
4973
  processor/command/step.rb, processor/main.rb, processor/running.rb,
5068
4974
  profile/irbrc, test/functional/test-step.rb: Go over some stepping
5069
4975
  oddities and bugs. Add command NEED_RUNNING: start putting tracking
5070
- commands that need a running program. irb -d now sets global $frame.
5071
- Fix bug in "finish" command and "set debug skip" now works.
4976
+ commands that need a running program. irb -d now sets global
4977
+ $frame. Fix bug in "finish" command and "set debug skip" now works.
5072
4978
 
5073
4979
  2009-10-29 rocky <rockyb@rubyforge.org>
5074
4980
 
@@ -5105,8 +5011,8 @@
5105
5011
  emacs/rbdbg-var.el, emacs/rbdbgr-core.el,
5106
5012
  emacs/test/test-regexp.el, emacs/test/test-track.el, lib/brkpt.rb,
5107
5013
  rbdbgr.rb: emacs/*: start to separate buffer-local vars for the
5108
- process buffer from the buffer-local vars of the (top-level
5109
- Ruby) script buffer. reset: mostly small doc-like changes.
5014
+ process buffer from the buffer-local vars of the (top-level Ruby)
5015
+ script buffer. reset: mostly small doc-like changes.
5110
5016
 
5111
5017
  2009-10-26 rocky <rockyb@rubyforge.org>
5112
5018
 
@@ -5129,8 +5035,8 @@
5129
5035
 
5130
5036
  * emacs/rbdbg-track-mode.el, emacs/rbdbgr-core.el,
5131
5037
  emacs/rbdbgr-track-mode.el, processor/command/info_subcmd/iseq.rb:
5132
- iseq.rb: Show more information in "info seq". emacs/*: Key-bindings
5133
- workaround in rbdbgr-track-mode and other fixes.
5038
+ iseq.rb: Show more information in "info seq". emacs/*: Key-bindings workaround in rbdbgr-track-mode and other
5039
+ fixes.
5134
5040
 
5135
5041
  2009-10-25 rocky <rockyb@rubyforge.org>
5136
5042
 
@@ -5147,7 +5053,7 @@
5147
5053
  * processor/command/disassemble.rb,
5148
5054
  processor/command/info_subcmd/iseq.rb: iseq.rb: Show instruction
5149
5055
  sequence breakpoints disassemble.rb: short by default (option is now
5150
- "full") allow '.' for current instruction sequence.
5056
+ "full") allow '.' for current instruction sequence.
5151
5057
 
5152
5058
  2009-10-24 rocky <rockyb@rubyforge.org>
5153
5059
 
@@ -5184,14 +5090,13 @@
5184
5090
  processor/command/set_subcmd/substitute_subcmd/string.rb,
5185
5091
  processor/frame.rb, processor/location.rb, processor/main.rb,
5186
5092
  processor/validate.rb: Add "set substitute string" to map string
5187
- eval names into a (temporary) file. emacs: expand regexp to deal
5093
+ eval names into a (temporary) file. emacs: expand regexp to deal
5188
5094
  with "via" or "remap" strings.
5189
5095
 
5190
5096
  2009-10-23 R. Bernstein <rocky@gnu.org>
5191
5097
 
5192
5098
  * processor/command/info_subcmd/file.rb: Bug in running "info file"
5193
5099
 
5194
-
5195
5100
  2009-10-23 R. Bernstein <rocky@gnu.org>
5196
5101
 
5197
5102
  * processor/command/info_subcmd/iseq.rb,
@@ -5201,17 +5106,8 @@
5201
5106
 
5202
5107
  2009-10-23 R. Bernstein <rocky@gnu.org>
5203
5108
 
5204
- Merge branch 'master' of git@github.com:rocky/rbdbgr
5205
-
5206
- 2009-10-23 R. Bernstein <rocky@gnu.org>
5207
-
5208
- * processor/command/info_subcmd/registers_subcmd/lfp.rb,
5209
- processor/command/info_subcmd/registers_subcmd/pc.rb,
5210
- processor/command/info_subcmd/registers_subcmd/sp.rb,
5211
- processor/command/set_subcmd/substitute.rb,
5212
- processor/command/set_subcmd/substitute_subcmd/path.rb,
5213
- processor/main.rb: Add gdb "set substitute path" in rudimentary
5214
- form.
5109
+ * : commit 97e43a889e41ba9838e763cd28e394ec7205e0af Author: R.
5110
+ Bernstein <rocky@gnu.org> Date: Fri Oct 23 16:02:31 2009 -0400
5215
5111
 
5216
5112
  2009-10-22 rocky <rockyb@rubyforge.org>
5217
5113
 
@@ -5223,7 +5119,7 @@
5223
5119
  processor/command/info_subcmd/file.rb, processor/main.rb: main.rb,
5224
5120
  file.rb: Remapping <internal:prelude> and more generally any file
5225
5121
  remapped shows up cmd.rb, file.rb: Show breakpoint numbers in the
5226
- way numbers are generally handled. in location line and has "info
5122
+ way numbers are generally handled. in location line and has "info
5227
5123
  file" properties shown.
5228
5124
 
5229
5125
  2009-10-22 rocky <rockyb@rubyforge.org>
@@ -5262,7 +5158,6 @@
5262
5158
  processor/main.rb, processor/validate.rb: Fix various bugs in/off of
5263
5159
  "disassemble" command, and showing internal debugger traceback, etc.
5264
5160
 
5265
-
5266
5161
  2009-10-20 rocky <rockyb@rubyforge.org>
5267
5162
 
5268
5163
  * processor/command/info_subcmd/registers_subcmd/lfp.rb,
@@ -5295,7 +5190,7 @@
5295
5190
  processor/command/where.rb, processor/default.rb, processor/main.rb:
5296
5191
  main.rb: Don't crap out on an unhandled exception in running a
5297
5192
  command. We now have enough of the debugger working where we can
5298
- dynamically investicagate and fix things. Add "set/show debug"
5193
+ dynamically investicagate and fix things. Add "set/show debug"
5299
5194
  subcommands for turning on/off internal debugger debugging.
5300
5195
 
5301
5196
  2009-10-20 rocky <rockyb@rubyforge.org>
@@ -5347,8 +5242,8 @@
5347
5242
 
5348
5243
  * processor/command/break.rb, processor/main.rb,
5349
5244
  test/functional/fn_helper.rb, test/functional/test-break.rb:
5350
- main.rb: Fix bug in "disable" command. break.rb: Canonicalize name
5351
- in container. test/* grow for testing breakpoints.
5245
+ main.rb: Fix bug in "disable" command. break.rb: Canonicalize name
5246
+ in container. test/* grow for testing breakpoints.
5352
5247
 
5353
5248
  2009-10-19 rocky <rockyb@rubyforge.org>
5354
5249
 
@@ -5366,7 +5261,7 @@
5366
5261
  processor/command/break.rb, processor/command/enable.rb,
5367
5262
  processor/running.rb: processor/command: add an "enable" command.
5368
5263
  processor/{breakpoint,running}.rb: move breakpoint code to a
5369
- separate file. processor/command/break.rb: category should be
5264
+ separate file. processor/command/break.rb: category should be
5370
5265
  "breakpoint", not "running" lib/brkpt.rb: add enabled=
5371
5266
 
5372
5267
  2009-10-19 R. Bernstein <rocky@gnu.org>
@@ -5385,7 +5280,7 @@
5385
5280
  processor/command/info_subcmd/file.rb,
5386
5281
  processor/command/info_subcmd/frame.rb,
5387
5282
  processor/command/info_subcmd/program.rb: command/info_sub/break.rb:
5388
- Add "info break" command. command/{break.rb,info_sub/program.rb}:
5283
+ Add "info break" command. command/{break.rb,info_sub/program.rb}:
5389
5284
  Use instruction sequence names to start to disambiguate locations.
5390
5285
  lib/break.rb: Add ignore field to breakpoint object.
5391
5286
  lib/brkptmgr.rb: add more of the useful Enumerable operators to
@@ -5430,8 +5325,8 @@
5430
5325
  processor/command/set_subcmd/auto_sub/irb.rb,
5431
5326
  processor/command/set_subcmd/auto_subcmd/eval.rb,
5432
5327
  processor/command/set_subcmd/auto_subcmd/irb.rb,
5433
- processor/command/show_subcmd/auto.rb: Add "info file" command. Fix
5434
- "set auto" subcommand. Remove extra \n in "List subcommands" help.
5328
+ processor/command/show_subcmd/auto.rb: Add "info file" command. Fix
5329
+ "set auto" subcommand. Remove extra \n in "List subcommands" help.
5435
5330
  Tidy up code more.
5436
5331
 
5437
5332
  2009-10-17 rocky <rockyb@rubyforge.org>
@@ -5443,14 +5338,14 @@
5443
5338
  processor/command/info_subcmd/registers.rb,
5444
5339
  processor/command/info_subcmd/return.rb, processor/main.rb,
5445
5340
  processor/mock.rb, processor/msg.rb, processor/running.rb,
5446
- test/unit/test-lib-brkptmgr.rb: Lots of little changes... main.rb:
5341
+ test/unit/test-lib-brkptmgr.rb: Lots of little changes... main.rb:
5447
5342
  Check breakpoint condition and find breakpoint command/info_subcmd:
5448
5343
  add PREFIX for future use command/info_subcmd/registers.rb: Minimum
5449
5344
  abbrev is now "reg" since there is a "return" command/break.rb: "b"
5450
5345
  is an alias for "break" lib/brkpt.rb: add enabled parameter, stay
5451
5346
  clear of name "binding" lib/brkptmgr.rb: add a "find" and "size"
5452
- commands, and access to list. command/*: complete I/O routine with
5453
- msg_nocr; DRY standalone code. running.rb: remove debug code.
5347
+ commands, and access to list. command/*: complete I/O routine with
5348
+ msg_nocr; DRY standalone code. running.rb: remove debug code.
5454
5349
 
5455
5350
  2009-10-17 rocky <rockyb@rubyforge.org>
5456
5351
 
@@ -5465,7 +5360,7 @@
5465
5360
  processor/command/show_subcmd/auto_subcmd/eval.rb,
5466
5361
  processor/command/show_subcmd/auto_subcmd/irb.rb,
5467
5362
  processor/running.rb: Add a minimal breakpoint command. Add some gem
5468
- install workarounds. Redmove need for short help constant in
5363
+ install workarounds. Redmove need for short help constant in
5469
5364
  subcommands.
5470
5365
 
5471
5366
  2009-10-17 rocky <rockyb@rubyforge.org>
@@ -5539,9 +5434,8 @@
5539
5434
  processor/command/base_subsubmgr.rb, processor/command/help.rb,
5540
5435
  processor/subcmd.rb: help.rb, base_submgr.rb: Allow regexp matching
5541
5436
  of command names for help listing. Idea courtesy of Michael Lord
5542
- Welles. base_subcmd.rb + above: DRY columnize code brkptmgr.rb:
5543
- Fix stupid syntax bug subcmd.rb: lookup() add optional parameter to
5544
- decide on whether to lookup by regexp or not.
5437
+ 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
5438
+ lookup by regexp or not.
5545
5439
 
5546
5440
  2009-10-17 rocky <rockyb@rubyforge.org>
5547
5441
 
@@ -5609,7 +5503,7 @@
5609
5503
  processor/command/info_subcmd/registers_subcmd/sp.rb,
5610
5504
  processor/command/show_subcmd/auto.rb, processor/default.rb,
5611
5505
  processor/msg.rb: complete "info registers", adding "info register
5612
- lfp". Tidy help * output. default.rb: add saferep to truncate long
5506
+ lfp". Tidy help * output. default.rb: add saferep to truncate long
5613
5507
  strings.
5614
5508
 
5615
5509
  2009-10-14 rocky <rockyb@rubyforge.org>
@@ -5631,8 +5525,8 @@
5631
5525
  processor/command/show_subcmd/auto_subcmd/irb.rb,
5632
5526
  processor/command/show_subcmd/autoeval.rb,
5633
5527
  processor/command/show_subcmd/autoirb.rb: sub commands of 'show
5634
- auto' works, more or less. Remove 'show autoeval' and 'show autoirb'
5635
- in favor of 'show auto eval' and 'show auto irb'.
5528
+ auto' works, more or less. Remove 'show autoeval' and 'show
5529
+ autoirb' in favor of 'show auto eval' and 'show auto irb'.
5636
5530
 
5637
5531
  2009-10-13 R. Bernstein <rocky@gnu.org>
5638
5532
 
@@ -5683,8 +5577,8 @@
5683
5577
  processor/command/info_subcmd/pc.rb,
5684
5578
  processor/command/info_subcmd/registers.rb: Add "info registers" in
5685
5579
  the spirit of gdb. Remove "info pc" as this is now covered by "info
5686
- registers". frame.rb: now shows: manditory parameters after optional
5687
- ones.
5580
+ registers". frame.rb: now shows: manditory parameters after
5581
+ optional ones.
5688
5582
 
5689
5583
  2009-09-30 rocky <rockyb@rubyforge.org>
5690
5584
 
@@ -5711,7 +5605,7 @@
5711
5605
  processor/command/info_subcmd/return.rb,
5712
5606
  processor/command/info_subcmd/sp.rb, test/functional/.gitignore,
5713
5607
  test/unit/test-cmd-kill.rb: pc.rb, sp.rb: add "info pc" and "info
5714
- sp" commands. info_subcmd/*.rb: remove SHORT_HELP which is set by
5608
+ sp" commands. info_subcmd/*.rb: remove SHORT_HELP which is set by
5715
5609
  base class.
5716
5610
 
5717
5611
  2009-09-29 rocky <rockyb@rubyforge.org>
@@ -5737,13 +5631,12 @@
5737
5631
 
5738
5632
  * test/functional/test-next.rb: Add "next" command functional test.
5739
5633
 
5740
-
5741
5634
  2009-09-27 rocky <rockyb@rubyforge.org>
5742
5635
 
5743
5636
  * lib/frame.rb, processor/command/finish.rb,
5744
5637
  processor/command/step.rb, processor/main.rb, processor/running.rb,
5745
5638
  test/functional/test-step.rb: Add "finish" command. Fix bugs in
5746
- stepping to specific events. Add event names for all events: add
5639
+ stepping to specific events. Add event names for all events: add
5747
5640
  switch, coverage and vm.
5748
5641
 
5749
5642
  2009-09-27 rocky <rockyb@rubyforge.org>
@@ -5755,14 +5648,14 @@
5755
5648
  * interface/base_intf.rb, interface/script.rb, interface/user.rb,
5756
5649
  io/input.rb, processor/command/list.rb, processor/main.rb,
5757
5650
  processor/validate.rb, rbdbgr.rb, test/functional/test-step.rb: Null
5758
- return on interactive input now uses last command. Various code
5651
+ return on interactive input now uses last command. Various code
5759
5652
  cleanups mostly on interfaces. More functional tests.
5760
5653
 
5761
5654
  2009-09-26 rocky <rockyb@rubyforge.org>
5762
5655
 
5763
5656
  * lib/file.rb, processor/command/list.rb, processor/main.rb,
5764
5657
  processor/validate.rb: List function-name works now. list file:line
5765
- works too. Don't show file text if there's nothing to show.
5658
+ works too. Don't show file text if there's nothing to show.
5766
5659
 
5767
5660
  2009-09-26 rocky <rockyb@rubyforge.org>
5768
5661
 
@@ -5772,7 +5665,7 @@
5772
5665
  bin/rbdbgr run.rb: Move Rbdbgr module to a module list.rb: bang on
5773
5666
  some more restart.rb: Add Ruby interpreter if $0 is not executable
5774
5667
  mock.rb: remove debug statement rbdbgr.rb: Add :set_restart option
5775
- which is less cumbersome than using :restart_argv
5668
+ which is less cumbersome than using :restart_argv
5776
5669
 
5777
5670
  2009-09-26 rocky <rockyb@rubyforge.org>
5778
5671
 
@@ -5785,7 +5678,7 @@
5785
5678
 
5786
5679
  * processor/command/info_subcmd/frame.rb, processor/frame.rb:
5787
5680
  processor/info_subcmd/frame.rb: DRY code processor/frame.rb:
5788
- offset2lines semantic change in rb-threadframe. reduce bogus
5681
+ offset2lines semantic change in rb-threadframe. reduce bogus
5789
5682
  behavior in standalone code.
5790
5683
 
5791
5684
  2009-09-26 rocky <rockyb@rubyforge.org>
@@ -5795,12 +5688,10 @@
5795
5688
  processor/mock.rb, processor/validate.rb,
5796
5689
  test/unit/test-proc-frame.rb, test/unit/test-proc-validate.rb:
5797
5690
  list.rb: Hammer on "list" command a little. Needs a lot more work
5798
- though. validate.rb: Use confirm from interface in command
5799
- processor. defaults.rb: Add defaults for "basename" and "autolist"
5800
- (neither is setable/showable yet). mock.rb: Add Debugger::Core mock
5801
- which reduces bogusness in some unit tests (proc-validate,
5802
- proc-frame) file.rb Speaking of bogusness, add parse location
5803
- routine which doesn't work yet.
5691
+ though. validate.rb: Use confirm from interface in command processor. defaults.rb: Add defaults for "basename" and "autolist" (neither is
5692
+ setable/showable yet). mock.rb: Add Debugger::Core mock which reduces bogusness in some
5693
+ unit tests (proc-validate, proc-frame) file.rb Speaking of bogusness, add parse location routine which
5694
+ doesn't work yet.
5804
5695
 
5805
5696
  2009-09-25 rocky <rockyb@rubyforge.org>
5806
5697
 
@@ -5832,8 +5723,7 @@
5832
5723
 
5833
5724
  * interface/base_intf.rb, test/functional/fn_helper.rb,
5834
5725
  test/functional/test-step.rb: base_intf.rb: use only I/O functions
5835
- we define. Was missing the newline. More work towards getting
5836
- functional testing working.
5726
+ we define. Was missing the newline. More work towards getting functional testing working.
5837
5727
 
5838
5728
  2009-09-24 R. Bernstein <rocky@gnu.org>
5839
5729
 
@@ -5856,21 +5746,20 @@
5856
5746
  * io/input.rb, rbdbgr.rb, test/functional/fn_helper.rb,
5857
5747
  test/unit/test-intf-user.rb, test/unit/test-io-input.rb,
5858
5748
  test/unit/test-user.rb: input.rb: don't assume input has a tty?
5859
- method. rbdbgr.rb: Allow one to pass in the input and output
5860
- descriptors More and better unit tests.
5749
+ method. rbdbgr.rb: Allow one to pass in the input and output
5750
+ descriptors More and better unit tests.
5861
5751
 
5862
5752
  2009-09-23 R. Bernstein <rocky@gnu.org>
5863
5753
 
5864
5754
  * io/input.rb, test/unit/test-io-input.rb: :line_edit only works if
5865
- input is a tty. Add trivial unit test of io/input.
5755
+ input is a tty. Add trivial unit test of io/input.
5866
5756
 
5867
5757
  2009-09-23 R. Bernstein <rocky@gnu.org>
5868
5758
 
5869
5759
  * interface/script.rb, interface/user.rb, io/input.rb,
5870
5760
  io/string_array.rb, processor/main.rb, test/unit/test-user.rb: Hook
5871
5761
  user/script interfaces to use new IO-based io/input. string_array
5872
- now (probably) is usable. main.rb eof is on the interface's input,
5873
- not the interface.
5762
+ now (probably) is usable. main.rb eof is on the interface's input, not the interface.
5874
5763
 
5875
5764
  2009-09-23 R. Bernstein <rocky@gnu.org>
5876
5765
 
@@ -5882,7 +5771,7 @@
5882
5771
 
5883
5772
  * interface/base_intf.rb, interface/script.rb, interface/user.rb,
5884
5773
  io/base_io.rb, io/input.rb, processor/main.rb: input.rb: closer to
5885
- being usuable. main.rb: Add end and unknown as other unmaskable
5774
+ being usuable. main.rb: Add end and unknown as other unmaskable
5886
5775
  events
5887
5776
 
5888
5777
  2009-09-23 rocky <rockyb@rubyforge.org>
@@ -5925,7 +5814,7 @@
5925
5814
  processor/command/source.rb, processor/command/step.rb,
5926
5815
  processor/command/up.rb, processor/command/where.rb,
5927
5816
  processor/mock.rb, processor/subcmd.rb: DRY code with respect to
5928
- mock setup. rake :check => :check:lib :check:commands, etc.
5817
+ mock setup. rake :check => :check:lib :check:commands, etc.
5929
5818
 
5930
5819
  2009-09-22 rocky <rockyb@rubyforge.org>
5931
5820
 
@@ -5934,19 +5823,16 @@
5934
5823
  processor/command/irb.rb, processor/command/up.rb,
5935
5824
  processor/command/where.rb, processor/frame.rb, processor/main.rb,
5936
5825
  processor/running.rb: Fix bugs in suffix handling for step/next
5937
- commands. "last position" includes the stack size. frame_setup() can
5938
- figure out the thread, so no need to pass that.
5826
+ commands. "last position" includes the stack size. frame_setup()
5827
+ can figure out the thread, so no need to pass that.
5939
5828
 
5940
5829
  2009-09-21 rocky <rockyb@rubyforge.org>
5941
5830
 
5942
5831
  * processor/command/set_subcmd/events.rb, processor/main.rb,
5943
5832
  processor/msg.rb: Correct process_command_and_quit? to do the right
5944
5833
  thing on interface EOF. Also, it now understands comments and how
5945
- to repeat the last command on the empty string. This removes bugs
5946
- in stepping on a "source" command and the duplicate stepping when
5947
- leaving irb. events.rb: allow commas to end event names, i.e. set
5948
- events line, call, return as well as: set events line call return
5949
-
5834
+ to repeat the last command on the empty string. This removes bugs in stepping on a "source" command and the
5835
+ 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
5950
5836
 
5951
5837
  2009-09-21 R. Bernstein <rocky@gnu.org>
5952
5838
 
@@ -5966,10 +5852,7 @@
5966
5852
  processor/mock.rb, processor/running.rb, rbdbgr.rb: Add custom irb
5967
5853
  profile for rbdbgr irb sessions. Running processor/command/irb.rb
5968
5854
  now runs irb which can be used to test the custom profile. Added irb
5969
- command 'n' for next. DRY step/next suffix detection code. Set
5970
- defaults more for normal users: set autoeval on set events:
5971
- remove instruction stepping set different on Did I mention that
5972
- "next" now works?
5855
+ 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?
5973
5856
 
5974
5857
  2009-09-20 rocky <rockyb@rubyforge.org>
5975
5858
 
@@ -5988,8 +5871,7 @@
5988
5871
  * processor/command/base_cmd.rb, processor/command/source.rb,
5989
5872
  processor/command/step.rb, processor/main.rb, processor/mock.rb,
5990
5873
  processor/msg.rb, rbdbgr.rb: Pretty close to having a working
5991
- "source" command - needs a little more work on eof condition. To
5992
- that end the, interface is now an array of interfaces.
5874
+ "source" command - needs a little more work on eof condition. To that end the, interface is now an array of interfaces.
5993
5875
 
5994
5876
  2009-09-18 rocky <rockyb@rubyforge.org>
5995
5877
 
@@ -6021,7 +5903,6 @@
6021
5903
  processor/running.rb: Add set/show subcommand "set autoirb".
6022
5904
  Separate "running"-category code from the various debugger commands.
6023
5905
 
6024
-
6025
5906
  2009-09-17 rockyb <rocky@gnu.org>
6026
5907
 
6027
5908
  * bin/rbdbgr, lib/irb.rb: Use excluded correctly. Disable
@@ -6100,7 +5981,7 @@
6100
5981
  processor/command/set_subcmd/traceset.rb,
6101
5982
  processor/command/show_subcmd/events.rb,
6102
5983
  processor/command/show_subcmd/traceset.rb: set/show traceset ->
6103
- set/show event info line -> info frame Minor other corrections.
5984
+ set/show event info line -> info frame Minor other corrections.
6104
5985
 
6105
5986
  2009-09-12 rocky <rockyb@rubyforge.org>
6106
5987
 
@@ -6135,9 +6016,9 @@
6135
6016
  processor/command/step.rb, processor/default.rb, processor/main.rb,
6136
6017
  test/unit/test-bin-rbdbgr.rb, test/unit/test-cmd-help.rb,
6137
6018
  test/unit/test-cmd-step.rb: Add ability to step by different
6138
- position: set/show different and s[tep]{+,-}. Add unit test for
6139
- step command which in the process found a bug in handling "step" as
6140
- well as showing how to improve unit test for the help command.
6019
+ position: set/show different and s[tep]{+,-}. Add unit test for step command which in the process found a bug in
6020
+ handling "step" as well as showing how to improve unit test for the
6021
+ help command.
6141
6022
 
6142
6023
  2009-09-10 R. Bernstein <rocky@gnu.org>
6143
6024
 
@@ -6156,7 +6037,7 @@
6156
6037
  2009-09-09 rocky <rockyb@rubyforge.org>
6157
6038
 
6158
6039
  * Rakefile, bin/rbdbgr: rbdbgr: Set restart args correclty. I have a
6159
- feeling I will be using this a lot. Rakefile: start work to make a
6040
+ feeling I will be using this a lot. Rakefile: start work to make a
6160
6041
  gem. Doesn't work yet though.
6161
6042
 
6162
6043
  2009-09-09 rocky <rockyb@rubyforge.org>
@@ -6166,20 +6047,17 @@
6166
6047
  processor/command/base_subsubmgr.rb,
6167
6048
  processor/command/show_subcmd/trace.rb, processor/main.rb,
6168
6049
  processor/mock.rb: rbdbgr: save/set/restore $0. Exclude
6169
- debug_program. Pass in debugger object. Try using $rbdbgr
6170
- for global debugger variable. Start sub commands of sub commands.
6171
- Not working yet. Define/use some processor attr_reader's to remove
6172
- ugly instance_variable_get's.
6050
+ debug_program. Pass in debugger object. Try using $rbdbgr for
6051
+ global debugger variable. Start sub commands of sub commands. Not working yet. Define/use some processor attr_reader's to remove ugly
6052
+ instance_variable_get's.
6173
6053
 
6174
6054
  2009-09-09 R. Bernstein <rocky@gnu.org>
6175
6055
 
6176
6056
  * Rakefile, processor/command/base_subcmd.rb,
6177
6057
  processor/command/base_submgr.rb, processor/command/kill.rb,
6178
6058
  processor/mock.rb, processor/msg.rb, processor/subcmd.rb, rbdbgr.rb:
6179
- Start using user inteface from command processor. Add rake tasks to
6180
- be able to run all pieces of the debugger individually (tasks
6181
- check:lib, check:commands, and check:processor). Kill deal with
6182
- failed kill via Errno::ESRCH.
6059
+ Start using user inteface from command processor. Add rake tasks to be able to run all pieces of the debugger
6060
+ individually (tasks check:lib, check:commands, and check:processor). Kill deal with failed kill via Errno::ESRCH.
6183
6061
 
6184
6062
  2009-09-09 rocky <rockyb@rubyforge.org>
6185
6063
 
@@ -6193,9 +6071,8 @@
6193
6071
  2009-09-08 rocky <rockyb@rubyforge.org>
6194
6072
 
6195
6073
  * bin/rbdbgr, interface/base_intf.rb, interface/user.rb:
6196
- interface/*: DRY code a little bin/rbdbgr: Scope variables better,
6197
- make routines in rbdbgr more unit testable partially by allowing
6198
- rbdbgr to be loaded/required.
6074
+ interface/*: DRY code a little bin/rbdbgr: Scope variables better, make routines in rbdbgr more
6075
+ unit testable partially by allowing rbdbgr to be loaded/required.
6199
6076
 
6200
6077
  2009-09-08 R. Bernstein <rocky@gnu.org>
6201
6078
 
@@ -6205,11 +6082,8 @@
6205
6082
 
6206
6083
  2009-09-08 rocky <rockyb@rubyforge.org>
6207
6084
 
6208
- Merge branch 'master' of git@github.com:rocky/rbdbgr
6209
-
6210
- 2009-09-08 rocky <rockyb@rubyforge.org>
6211
-
6212
- * Rakefile: Default task for now is test.
6085
+ * : commit 1920a02cb99f31db9052d194d711d1e0df8670d8 Author: rocky
6086
+ <rockyb@rubyforge.org> Date: Tue Sep 8 08:02:55 2009 -0400
6213
6087
 
6214
6088
  2009-09-08 rocky <rockyb@rubyforge.org>
6215
6089
 
@@ -6361,8 +6235,8 @@
6361
6235
  * emacs/rbdbg-file.el, emacs/rbdbg-loc.el, emacs/rbdbg-lochist.el,
6362
6236
  emacs/rbdbg-track.el, emacs/test/test-loc.el: Pretty much a working
6363
6237
  comint hook. I can't believe how something this simple was made so
6364
- complicated. And we don't need no stinking buffer in a location
6365
- object - An Emacs mark contains a reference to a buffer.
6238
+ complicated. And we don't need no stinking buffer in a location object - An Emacs
6239
+ mark contains a reference to a buffer.
6366
6240
 
6367
6241
  2009-08-25 rockyb <rocky@gnu.org>
6368
6242
 
@@ -6399,8 +6273,7 @@
6399
6273
  emacs/rbdbg-lochist.el, emacs/rbdbg-locring.el,
6400
6274
  emacs/test/.gitignore, emacs/test/behave.el,
6401
6275
  emacs/test/test-loc.el, emacs/test/test-locring.el: Start rewriting
6402
- Emacs/Debugger interaction code. From scratch. This doesn't do
6403
- anything useful yet.
6276
+ Emacs/Debugger interaction code. From scratch. This doesn't do anything useful yet.
6404
6277
 
6405
6278
  2009-08-23 rocky <rockyb@rubyforge.org>
6406
6279
 
@@ -6427,11 +6300,10 @@
6427
6300
  processor/command/show_subcmd/traceset.rb,
6428
6301
  processor/command/show_subcmd/width.rb, processor/command/step.rb,
6429
6302
  processor/command/up.rb, processor/command/where.rb,
6430
- processor/mock.rb, rbdbgr.rb: Add a "restart" command. We can now
6431
- debug debugger commands; debugger writers: eat your heart out! DRY
6432
- debugger-command demo code by putting more of the boilerplate code
6433
- into mock.rb More demoing done added through the advanced magic of
6434
- loops.
6303
+ processor/mock.rb, rbdbgr.rb: Add a "restart" command. We can now debug debugger commands; debugger writers: eat your heart
6304
+ out! DRY debugger-command demo code by putting more of the boilerplate
6305
+ code into mock.rb More demoing done added through the advanced magic
6306
+ of loops.
6435
6307
 
6436
6308
  2009-08-21 rocky <rockyb@rubyforge.org>
6437
6309
 
@@ -6445,8 +6317,8 @@
6445
6317
 
6446
6318
  * lib/core.rb, processor/command/disassemble.rb, processor/main.rb:
6447
6319
  core.rb: trace vm instructions - Yeah baby! disassemble.rb: show
6448
- disassembly for *anything* that responds to disasm better error
6449
- message for being in C functions. main.rb: add more even icons and
6320
+ disassembly for *anything* that responds to disasm better error
6321
+ message for being in C functions. main.rb: add more even icons and
6450
6322
  show even when we don't have an icon.
6451
6323
 
6452
6324
  2009-08-21 R. Bernstein <rocky@gnu.org>
@@ -6460,12 +6332,8 @@
6460
6332
 
6461
6333
  2009-08-21 R. Bernstein <rocky@gnu.org>
6462
6334
 
6463
- Merge branch 'master' of git@github.com:rocky/rbdbgr
6464
-
6465
- 2009-08-21 R. Bernstein <rocky@gnu.org>
6466
-
6467
- * lib/core.rb, processor/main.rb, rbdbgr.rb: Add more icons. And a
6468
- class test.
6335
+ * : commit 3696fa2f4dbc70e7a81e12dc5194d77208bb3de6 Author: R.
6336
+ Bernstein <rocky@gnu.org> Date: Fri Aug 21 09:20:29 2009 -0400
6469
6337
 
6470
6338
  2009-08-20 rocky <rockyb@rubyforge.org>
6471
6339
 
@@ -6477,7 +6345,7 @@
6477
6345
 
6478
6346
  * lib/core.rb, rbdbgr.rb: Add event after debugger-call debugging.
6479
6347
  Don't show stopping points inside debugger method for when
6480
- :immediate => true It's almost looking like a real debugger.
6348
+ :immediate => true It's almost looking like a real debugger.
6481
6349
 
6482
6350
  2009-08-18 rocky <rockyb@rubyforge.org>
6483
6351
 
@@ -6489,7 +6357,6 @@
6489
6357
 
6490
6358
  * processor/command/step.rb: Add step command - this time, for sure!
6491
6359
 
6492
-
6493
6360
  2009-08-18 rocky <rockyb@rubyforge.org>
6494
6361
 
6495
6362
  * lib/core.rb, processor/command/continue.rb,
@@ -6562,7 +6429,7 @@
6562
6429
  processor/msg.rb, processor/validate.rb, rbdbgr.rb,
6563
6430
  test/unit/test-proc-validate.rb: Add a 'kill' command - don't know
6564
6431
  how I lived this long without it! Add confirm method. Use full
6565
- sentences in command messages. Start testing validation routines.
6432
+ sentences in command messages. Start testing validation routines.
6566
6433
  Nuke trace hook until I figure out the garbage collection segv. I'll
6567
6434
  be back!
6568
6435
 
@@ -6578,14 +6445,8 @@
6578
6445
 
6579
6446
  2009-08-08 rocky <rockyb@rubyforge.org>
6580
6447
 
6581
- Merge branch 'master' of git@github.com:rocky/rbdbgr Conflicts:
6582
- processor/main.rb Conflicts: processor/main.rb
6583
-
6584
- 2009-08-12 rocky <rockyb@rubyforge.org>
6585
-
6586
- * processor/command/exit.rb, processor/command/help.rb,
6587
- processor/command/where.rb, processor/main.rb,
6588
- test/unit/test-proc-main.rb: I hate conflicted merges
6448
+ * : commit 0fedb641a33656b55f2020340f21872a3160c529 Author: rocky
6449
+ <rockyb@rubyforge.org> Date: Wed Aug 12 20:22:52 2009 -0400
6589
6450
 
6590
6451
  2009-08-08 rocky <rockyb@rubyforge.org>
6591
6452
 
@@ -6595,15 +6456,8 @@
6595
6456
 
6596
6457
  2009-08-08 rocky <rockyb@rubyforge.org>
6597
6458
 
6598
- Merge branch 'master' of git@github.com:rocky/rbdbgr Conflicts:
6599
- processor/command/exit.rb processor/command/help.rb
6600
- processor/command/where.rb processor/main.rb
6601
- test/unit/test-proc-main.rb
6602
-
6603
- 2009-08-12 R. Bernstein <rocky@gnu.org>
6604
-
6605
- * processor/command/base_subcmd.rb: Playing switch-board operator.
6606
- You know, delegation not inheritance
6459
+ * : commit cdcfba71a1e69d3158faa475f4f616287bb2afb3 Author: R.
6460
+ Bernstein <rocky@gnu.org> Date: Wed Aug 12 13:06:18 2009 -0400
6607
6461
 
6608
6462
  2009-08-12 rockyb <rocky@gnu.org>
6609
6463
 
@@ -6643,7 +6497,7 @@
6643
6497
  processor/command/set_subcmd/width.rb,
6644
6498
  processor/command/show_subcmd/.gitignore, processor/main.rb:
6645
6499
  Debugger::Subcommand is a subclass of Debugger::Command - DRYs code
6646
- a little bit. Add undefined command message used when set autoeval
6500
+ a little bit. Add undefined command message used when set autoeval
6647
6501
  is off.
6648
6502
 
6649
6503
  2009-08-08 rocky <rockyb@rubyforge.org>
@@ -6747,7 +6601,7 @@
6747
6601
  processor/main.rb, processor/mock.rb, rbdbgr.rb,
6748
6602
  test/unit/test-cmd-help.rb, test/unit/test-cmdproc.rb,
6749
6603
  test/unit/test-proc-main.rb: Separate Debugger, Debugger::Core and
6750
- Debugger::CmdProcessor settings. Fix bugs in "where" command. Add
6604
+ Debugger::CmdProcessor settings. Fix bugs in "where" command. Add
6751
6605
  ruby-debug stack_trace_on_error option.
6752
6606
 
6753
6607
  2009-08-05 rocky <rockyb@rubyforge.org>
@@ -6757,10 +6611,8 @@
6757
6611
  processor/command/where.rb, processor/mock.rb,
6758
6612
  processor/validate.rb, rbdbgr.rb, test/unit/test-proc-frame.rb: Add
6759
6613
  access to (top-)level debugger settings - help uses "width" setting
6760
- of this now. Start a mock Debugger to help runing/testing
6761
- individual commands standalone. Fix bugs in get_int of validate.
6762
- "where" now sets a max int value. Probably some other things as
6763
- well. Whew.
6614
+ of this now. Start a mock Debugger to help runing/testing individual commands
6615
+ standalone. Fix bugs in get_int of validate. "where" now sets a max int value. Probably some other things as well. Whew.
6764
6616
 
6765
6617
  2009-08-04 rocky <rockyb@rubyforge.org>
6766
6618
 
@@ -6775,7 +6627,7 @@
6775
6627
  processor/command/help.rb, processor/command/up.rb,
6776
6628
  processor/command/where.rb: API change requires that we can no
6777
6629
  longer create a Debugger::Core object without a Debugger object.
6778
- Adjust command standalone demo for this. Todo: create a common mock
6630
+ Adjust command standalone demo for this. Todo: create a common mock
6779
6631
  helper module.
6780
6632
 
6781
6633
  2009-08-04 rocky <rockyb@rubyforge.org>
@@ -6785,9 +6637,8 @@
6785
6637
  processor/frame.rb, rbdbgr.rb, test/unit/test-cmd-help.rb,
6786
6638
  test/unit/test-cmdproc.rb, test/unit/test-proc-frame.rb: Bug fix for
6787
6639
  negative positioning in frame command. help doc corrections in
6788
- up/down. Start adding debugger settings. In doing so we also start
6789
- start linking together core, command_processor and debugger objects.
6790
-
6640
+ up/down. Start adding debugger settings. In doing so we also start start
6641
+ linking together core, command_processor and debugger objects.
6791
6642
 
6792
6643
  2009-08-03 rocky <rockyb@rubyforge.org>
6793
6644
 
@@ -6849,8 +6700,7 @@
6849
6700
  2009-07-30 rocky <rockyb@rubyforge.org>
6850
6701
 
6851
6702
  * lib/frame.rb: Don't use ThreadFrame#caller_method but
6852
- eval('self.class', frame.binding) instead. Add stack frame numbers
6853
- to stack listing.
6703
+ eval('self.class', frame.binding) instead. Add stack frame numbers to stack listing.
6854
6704
 
6855
6705
  2009-07-28 rocky <rockyb@rubyforge.org>
6856
6706
 
@@ -6877,7 +6727,7 @@
6877
6727
 
6878
6728
  * processor/cmdproc.rb, processor/command/help.rb,
6879
6729
  processor/command/where.rb: Get "where" command to a point where it
6880
- is minimally useful. Start "help" command.
6730
+ is minimally useful. Start "help" command.
6881
6731
 
6882
6732
  2009-07-25 rocky <rockyb@rubyforge.org>
6883
6733
 
@@ -6906,10 +6756,10 @@
6906
6756
  * lib/core.rb, lib/frame.rb, lib/stack.rb, processor/cmdproc.rb,
6907
6757
  processor/command/base_cmd.rb, processor/command/exit.rb,
6908
6758
  processor/command/where.rb, rbdbgr.rb: where.rb: now to the state
6909
- where it does something remotely useful. process_command_and_quit?
6759
+ where it does something remotely useful. process_command_and_quit?
6910
6760
  doesn't try to run a comand after running it cmdproc.rb: set up
6911
- access from commmand to core and itself. rbdbgr.rb: add debugger()
6912
- method. exit.rb: fix bug in calling exit without args.
6761
+ access from commmand to core and itself. rbdbgr.rb: add debugger()
6762
+ method. exit.rb: fix bug in calling exit without args.
6913
6763
 
6914
6764
  2009-07-18 rocky <rockyb@rubyforge.org>
6915
6765
 
@@ -6974,4 +6824,3 @@
6974
6824
 
6975
6825
  * Baby steps toward a real debugger. Hah - Florian, I beat you to it!
6976
6826
 
6977
-