forked from cldwalker/debugger
-
Notifications
You must be signed in to change notification settings - Fork 4
/
OLD_CHANGELOG
5655 lines (3807 loc) · 166 KB
/
OLD_CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2009-03-29 03:00 Rocky Bernstein
* ChangeLog, cli/ruby-debug/commands/breakpoints.rb, lib/ChangeLog,
test/data/annotate.right, test/data/breakpoints.right,
test/data/emacs_basic.right, test/data/info.right,
test/data/save.right: Canonicalize breakpoint locations a little
better. More work should be done and more work should be done on
the testing side too.
2009-03-17 10:35 Rocky Bernstein
* cli/ruby-debug/commands/irb.rb: Document irb additions old and
new
2009-03-17 10:33 Rocky Bernstein
* cli/ruby-debug/commands/irb.rb: irb "next" -> "n" since "next" is
a reserved word.
2009-03-17 10:30 Rocky Bernstein
* cli/ruby-debug/commands/irb.rb: Fix some irb -d breakage when set
autoirb is in effect
2009-03-17 10:22 Rocky Bernstein
* cli/ruby-debug/commands/irb.rb: Add "next" and "step" commands in
irb
2009-03-17 02:05 Rocky Bernstein
* cli/ruby-debug/commands/irb.rb, cli/ruby-debug/processor.rb,
configure.ac, test/data/ctrl.right, test/data/post-mortem.right,
test/test-ctrl.rb: configure.ac: in 0.10.4vc now. Add -d in irb
facilitate debugger testing via global $rdebug_state. Also set
$rdebug_state in debuggertesting is set.
"kill" is now allowed as a control command, this adjusts output.
and this changes
2009-03-11 23:42 Rocky Bernstein
* ChangeLog, doc/ruby-debug.texi, lib/ChangeLog: update texinfo for
catch
2009-03-11 18:57 Rocky Bernstein
* cli/ruby-debug/commands/catchpoint.rb, emacs/rdebug-core.el,
emacs/rdebug-track.el, emacs/test/test-regexp.el: Update "catch"
command help string. Reindent some emacs files to make tests
happy.
2009-02-10 04:32 Rocky Bernstein
* emacs/rdebug-core.el: Remove the annoying disappearing command
window when we there's an initial error in running the Ruby
program
2009-01-23 20:51 Rocky Bernstein
* doc/ruby-debug.texi: Show how to add a new command
2009-01-23 17:20 Rocky Bernstein
* cli/ruby-debug/commands/kill.rb, cli/ruby-debug/processor.rb: Add
a kill command
2008-12-24 03:32 Rocky Bernstein
* test/cli/commands/unit/regexp.rb: One more quit test.
2008-12-24 03:21 Rocky Bernstein
* cli/ruby-debug/commands/quit.rb, doc/ruby-debug.texi,
test/cli/commands/unit/regexp.rb, test/data/annotate.cmd,
test/data/annotate.right, test/data/break_bad.cmd,
test/data/break_bad.right, test/data/breakpoints.cmd,
test/data/breakpoints.right: Allow ! suffix on {q{,uit},exit} to
be the same as "unconditionally" #23299
2008-11-25 02:43 Rocky Bernstein
* ChangeLog, cli/ruby-debug/commands/frame.rb, configure.ac,
doc/ruby-debug.texi, ext/ruby_debug.c, lib/ChangeLog,
test/data/frame.cmd, test/data/frame.right: Frame without a frame
number means frame 0, same as gdb. We are now in 0.10.4 territory
now.
2008-11-17 07:34 Rocky Bernstein
* CHANGES: Last commit before release.
2008-11-16 00:14 Rocky Bernstein
* ChangeLog, bin/rdebug, lib/ChangeLog: Add rdoc for rdebug script.
2008-11-15 22:13 Rocky Bernstein
* Rakefile, ext/ruby_debug.c: Go over RDOC documentation.
2008-11-15 21:51 Rocky Bernstein
* doc/ruby-debug.texi: Add one more reference to start with a block
2008-11-15 21:23 Rocky Bernstein
* doc/ruby-debug.texi: Remove hard-coded version number in example
output
2008-11-15 02:21 Rocky Bernstein
* ext/win32/.cvsignore: More administrivia
2008-11-15 02:20 Rocky Bernstein
* ext/win32: More administrivia
2008-11-15 02:18 Rocky Bernstein
* ., .cvsignore: More administrivia
2008-11-14 19:39 Rocky Bernstein
* ., .cvsignore: More administrivia
2008-11-14 19:38 Rocky Bernstein
* .cvsignore: Administrivia
2008-11-14 19:37 Rocky Bernstein
* ., README, Rakefile, doc, doc/.cvsignore: Go over documentation
for 0.10.3 release. rdoc creates files in doc/rdoc.
2008-11-14 19:28 Rocky Bernstein
* README, configure.ac, doc/ruby-debug.texi,
lib/ruby-debug-base.rb: Go over documentation and revise.
2008-11-14 15:32 Rocky Bernstein
* CHANGES, ChangeLog, cli/ruby-debug.rb,
cli/ruby-debug/commands/frame.rb, doc/ruby-debug.texi,
ext/ruby_debug.c, lib/ChangeLog, lib/ruby-debug-base.rb: Move
Debugger#debugger from base to cli. Revert code in ruby_debug.c
and block parameter in debugger. cf. -> Compare with. Document
Debugger.start better.
2008-11-13 10:29 Rocky Bernstein
* ChangeLog, ext/ruby_debug.c, lib/ChangeLog: Make
Debugger.start{block} work if Debugger.started? is false. Second
try.
2008-11-11 15:33 Rocky Bernstein
* ., Rakefile, test/cli/commands/catchpoint_test.rb,
test/cli/commands/unit, test/cli/commands/unit/regexp.rb: Start
unit test for command regular expressions. Much more willing out
to be done later....
2008-11-11 14:42 Rocky Bernstein
* test/data/raise.right: More line number changes in tdebug
2008-11-11 14:40 Rocky Bernstein
* test/data/raise.right: tdebug lines have changed
2008-11-11 02:07 Rocky Bernstein
* ChangeLog, cli/ruby-debug/commands/frame.rb, lib/ChangeLog,
test/test-dollar-0.rb, test/test-frame.rb, test/trunc-call.rb:
Tweak truncated stack test since Ruby's caller doesn't seem to
include (tail?) recursive calls and we do. Get regression tests
working in light of recent changes.
2008-11-10 08:47 Kent Sibilev
* ext/ruby_debug.c: register debug_frame_t->arg_ary with GC
2008-11-10 02:56 Kent Sibilev
* bin/rdebug, ext/ruby_debug.c: Trying to fix "if $0 == __FILE__"
ruby's idiom. Apparently setting $0 to
a new value doesn't work correctly. (Ruby's bug?)
$ cat t3.rb
p $0
p File.expand_path $0
$0 = File.expand_path $0
p $0
$ ruby t3.rb
"t3.rb"
"/Users/kent/Work/ruby-debug/trunk/t3.rb"
"/Users/ke"
2008-11-10 01:50 Kent Sibilev
* ext/ruby_debug.h: added declaration of
check_breakpoints_by_method method to remove compiler warning
2008-11-10 01:48 Kent Sibilev
* lib/ruby-debug-base.rb: a little bit more readable
2008-11-10 01:43 Kent Sibilev
* ext/ruby_debug.c: running at_exit hooks at the end of the
debug_load method in order to fix test cases a chance to run
2008-11-10 01:41 Kent Sibilev
* ext/ruby_debug.c: can't store a copy of the debug_context in the
stack like that, it doesn't play along with garbage collector.
2008-11-10 01:39 Kent Sibilev
* ext/ruby_debug.c: these two methods are unused
2008-11-10 01:36 Kent Sibilev
* ext/breakpoint.c: fix the compiler warning
2008-11-10 01:35 Kent Sibilev
* lib/ruby-debug-base.rb: Debugger.start must always call the
passed block
2008-11-07 19:35 Rocky Bernstein
* ChangeLog, cli/ruby-debug/commands/frame.rb, lib/ChangeLog:
Change truncated frame message.
2008-11-07 10:39 Rocky Bernstein
* ChangeLog, bin/rdebug, cli/ruby-debug.rb,
cli/ruby-debug/commands/frame.rb, lib/ChangeLog, test/tdebug.rb:
Add check to "where" to see if the call stack is truncated; task
#2354
2008-11-06 16:17 Rocky Bernstein
* ChangeLog, Rakefile, lib/ChangeLog: #22698 Allow ruby-debug-base
0.x.y.z be compatible with ruby-debug 0.x.y.
2008-11-02 21:59 Rocky Bernstein
* ChangeLog, ext/ruby_debug.c, lib/ChangeLog,
lib/ruby-debug-base.rb: Debugger.start with a block now stops
inside the block. Debugger.debugger with a block works like
Debugger.start with a block.
The whole interface is hopelessly kludgy and needs to be redone.
2008-10-27 15:29 Rocky Bernstein
* ChangeLog, test/data/raise.right: tdebug.rb line numbers changed.
Update test numbers -- I think this is right.
2008-10-26 14:54 Rocky Bernstein
* ChangeLog, ext/extconf.rb, ext/ruby_debug.c, lib/ChangeLog: Doc
typo. Add comment to remind me how to turn off optimizationin
extconf.rb
2008-10-25 18:10 Rocky Bernstein
* cli/ruby-debug/interface.rb: Fix mismatched interface.
2008-10-25 16:01 Rocky Bernstein
* cli/ruby-debug/commands/breakpoints.rb, ext/ruby_debug.c,
lib/ChangeLog, test/data/annotate.right,
test/data/breakpoints.right, test/data/emacs_basic.right,
test/data/finish.right, test/test-finish.rb: Warn and add a
"confirmation" when setting a breakpoint on a file that is not
loaded. Regression tests no longer fail.
2008-09-22 21:01 Rocky Bernstein
* cli/ruby-debug.rb: Remove a $DEBUG warning
2008-09-22 00:07 Rocky Bernstein
* doc, doc/.cvsignore, lib/ruby-debug-base.rb,
test/data/pm-bug.cmd, test/data/pm-bug.right,
test/data/post-mortem.right, test/pm-bug.rb, test/test-pm.rb:
#22118 bug in showing variables post mortem. Patch thanks to
rubikitch.
Update pm.rb integration test.
2008-09-21 23:09 Rocky Bernstein
* CHANGES: In 0.10.3 territory now.
2008-09-21 23:06 Rocky Bernstein
* ext/ruby_debug.c, test/tdebug.rb: tdebug.rb: modify frozen string
taken from rdebug. Patch from Martin Krauskopf.
ruby_debug.c: in 0.10.3 now.
2008-09-03 17:33 Rocky Bernstein
* doc: Administrivia
2008-09-03 17:29 Rocky Bernstein
* ChangeLog, lib/ChangeLog, test/helper.rb: Show line numbers when
$DEBUG is set. Patch #21772 from Martin Krauskopf
2008-08-28 05:43 Kent Sibilev
* ext/ruby_debug.c:
2008-08-28 05:41 Kent Sibilev
* CHANGES: preparing version 0.10.2
2008-08-15 17:36 Kent Sibilev
* cli/ruby-debug/commands/list.rb: Fixed an exception when calling
Kernel#debugger method from the eval code
2008-07-10 09:47 Kent Sibilev
* cli/ruby-debug/commands/continue.rb, cli/ruby-debug/processor.rb:
allow 'continue' command from post-mortem
here is an example where it is needed:
...
Debugger.post_mortem do
method_that_raises_an_exception()
end
...
I want to be able to inspect the post_mortem context and then to
continue the program execution
2008-07-10 08:55 Kent Sibilev
* ext/ruby_debug.c: fixed segfault and finish command
2008-07-09 19:43 Kent Sibilev
* cli/ruby-debug/commands/breakpoints.rb: allow setting a
breakpoint on a file that is not yet loaded
2008-07-09 19:29 Kent Sibilev
* cli/ruby-debug/interface.rb: RemoteInterface should extend
Interface class
2008-07-09 19:25 Kent Sibilev
* bin/rdebug: $0 is frozen in Ruby 1.8.7
2008-07-09 00:43 Rocky Bernstein
* cli/ruby-debug.rb, cli/ruby-debug/processor.rb: Some meager (and
not complete) support for a verbose mode on
source'ing a file. Some more print's turned to errmsg as
appropriate.
2008-07-07 07:11 Rocky Bernstein
* lib/ruby-debug-base.rb: Tracker [#20041] start erroneously moved
to Kernel - should be in
Debugger.start
2008-07-03 16:03 Rocky Bernstein
* doc/ruby-debug.texi: Document that backslash can escape debugger
command separation.
2008-06-20 06:46 Rocky Bernstein
* CHANGES, cli/ruby-debug/commands/trace.rb,
lib/ruby-debug-base.rb: trace.rb: add "trace var"
ruby-debug-base.rb: remove another undefined warning.
2008-05-27 03:54 Rocky Bernstein
* cli/ruby-debug/commands/save.rb, cli/ruby-debug/interface.rb,
test/data/save.cmd, test/data/save.right, test/test-save.rb: Add
save test. save.rb: use pretty-printed regexp. Interface, for now
add restart_file accessor like the others. The processor
interface
need revision though.
2008-05-24 01:27 Rocky Bernstein
* ChangeLog, doc/ruby-debug.texi, lib/ChangeLog: Remove dup lines.
2008-05-23 14:57 Rocky Bernstein
* cli/ruby-debug/commands/save.rb: Catchpoints have changed. Fix
bug in saving them.
2008-05-23 01:04 Rocky Bernstein
* cli/ruby-debug/commands/catchpoint.rb,
cli/ruby-debug/commands/info.rb, ext/breakpoint.c,
test/cli/commands/catchpoint_test.rb, test/data/catch.cmd,
test/data/catch.right, test/test-catch.rb: Lots of bogosity fixed
in catchpoint handling. Added "catch xxx off".
Confirm when deleting all catchpoints. Correct C rdoc.
#20237
2008-05-20 07:20 Rocky Bernstein
* doc/rdebug-emacs.texi, doc/ruby-debug.texi: Use a straight quote
in the typewriter font.
2008-05-17 22:11 Rocky Bernstein
* cli/ruby-debug/commands/save.rb: Wording a little closer to gdb's
;-)
2008-05-17 11:35 Rocky Bernstein
* doc/rdebug-emacs.texi, doc/ruby-debug.texi: e.g. -> e.g.@:
2008-05-15 18:06 Rocky Bernstein
* test, test/.cvsignore: Ignore config.private.yaml which folks may
use/customize to omit tests
2008-05-15 17:52 Rocky Bernstein
* Rakefile, test/cli, test/cli/commands,
test/cli/commands/catchpoint_test.rb: Regression test for recent
"catch nn off" error. Again from Martin Krauskopf
2008-05-15 16:05 Rocky Bernstein
* ChangeLog, cli/ruby-debug/commands/catchpoint.rb, lib/ChangeLog:
Handle "catch nnn off" Forgotten there during r656.
From mkrauskopf [#20156].
2008-05-12 03:21 Rocky Bernstein
* cli/ruby-debug/commands/irb.rb: Small doc fix.
2008-05-11 15:25 Rocky Bernstein
* test/data/raise.right: tdebug.rb got a line shorter.
2008-05-11 09:03 Rocky Bernstein
* test/helper.rb, test/test-init.rb: Patch #19934 multi-interpreter
patch from Martin Krauskopf
2008-05-11 08:38 Rocky Bernstein
* bin/rdebug, ext/ruby_debug.c, test/data/output.right,
test/data/quit.right, test/tdebug.rb: Remove stop in debug_load
due to Debugger.start getting called twice.
The fix -- for now -- is to add another parameter to debug_load
to
indicate not to increment debug_count. We could also make that
the
default in debug_load as well, but debug_load might be useful in
other
situations and where control_threads are not relevant (which is
why we
need to call Debugger.start rather than let debug_load do it).
Bug #19930
2008-05-05 18:05 Rocky Bernstein
* ChangeLog, lib/ChangeLog, test/data/frame.right,
test/test-frame.rb: make test-frame installation independent. Bug
#19931
2008-05-01 23:16 Rocky Bernstein
* doc/ruby-debug.texi: Remove a Texism. texinfo does not do or need
italic correction.
2008-04-30 20:14 Rocky Bernstein
* doc/ruby-debug.texi: Fix doc for binding_n().
2008-04-29 14:00 Rocky Bernstein
* cli/ruby-debug/commands/method.rb, doc/ruby-debug.texi,
test/classes.rb, test/data/methodsig.right: Small doc and test
improvements on 'method signature'
2008-04-29 13:37 Rocky Bernstein
* ChangeLog, cli/ruby-debug/commands/breakpoints.rb,
cli/ruby-debug/commands/continue.rb, lib/ChangeLog,
test/data/frame.cmd, test/data/frame.right: Test line number in
"continue" command for validity.
2008-04-29 09:11 Rocky Bernstein
* cli/ruby-debug/commands/method.rb,
cli/ruby-debug/commands/set.rb,
cli/ruby-debug/commands/variables.rb, test/classes.rb,
test/data/method.cmd, test/data/method.right,
test/data/methodsig.cmd, test/data/methodsig.right,
test/data/setshow.right, test/test-method.rb: Add "method
signature" command to show a method's signature.
2008-04-29 08:23 Rocky Bernstein
* test/config.yaml: Forgot to add this on last commit.
2008-04-28 16:42 Rocky Bernstein
* cli/ruby-debug/commands/set.rb, test/data/setshow.cmd,
test/data/setshow.right: Catch errors in improper set callstyle
parameter. Bug #19792
2008-04-28 16:16 Rocky Bernstein
* ChangeLog, lib/ChangeLog, test/helper.rb: From Martin Krauskopf
via patch #19779
Allow folks to configure Ruby used for CLI tests in the
test/config.yaml. The defaults are for native Ruby, so nothing
needs
to be done for ruby-debug.
Developers of interfaces other than cli might override
config.yaml by
customized config.private.yaml which is ignored. So there will be
no
trash in e.g. 'svn st' output when developer customize the Ruby
to be
used.
Handy for alternative interface implementations using
svn:externals.
2008-04-27 08:28 Rocky Bernstein
* emacs/rdebug-cmd.el, emacs/rdebug-track.el: Reduce spurious
read-only setting when short-key is turned
on/off in the command buffer.
2008-04-25 02:54 Rocky Bernstein
* CHANGES, emacs/rdebug-cmd.el, emacs/rdebug-gud.el,
emacs/rdebug-source.el, emacs/rdebug-track.el: Try to get
rdebug-track under control again.
Remove "<" in the command buffer as a local key setting.
Make more checkdoc friendly.
2008-04-22 02:49 Rocky Bernstein
* doc/ruby-debug.texi, lib/ruby-debug-base.rb: Experiment with
debugger(steps=0). Puts us in the debugger call, but this may be
the best we can do for now. See tracker
#19639.
2008-04-20 21:38 Rocky Bernstein
* doc/rdebug-emacs.texi, doc/ruby-debug.texi: rdebug-emacs.texi:
update nodes so makeinfo will work.
rdebug-texi: Note slight preference for ruby -rtracer over rdebug
--trace.
2008-04-19 13:22 Rocky Bernstein
* ext/ruby_debug.c, test/bp_loop_issue.rb,
test/data/break_loop_bug.cmd, test/data/break_loop_bug.right,
test/data/breakpoints.cmd, test/data/breakpoints.right,
test/data/emacs_basic.right, test/test-break-bad.rb,
test/test-emacs-basic.rb: Change test for whether we have moved
off a line or not for purposes
of stopping at a breakpoint on a line. The line events for which
there
are normally two stops are on NODE if's before the if and after
the
expression evaluation. Tracker #19594.
2008-04-16 01:11 Rocky Bernstein
* ChangeLog, cli/ruby-debug/commands/show.rb,
cli/ruby-debug/interface.rb, cli/ruby-debug/processor.rb,
ext/ruby_debug.c, lib/ChangeLog, test/data/setshow.cmd,
test/data/setshow.right: In 0.10.2 now. Some work to cope systems
without readline. More work is needed.
Add test of "set autoeval." Undefined command message more
closely like gdb's.
2008-04-15 23:56 Rocky Bernstein
* doc/ruby-debug.texi: Note that Debugger.start is currently broken
when used with a block.
2008-04-11 22:24 Anders Lindgren
* doc/rdebug-emacs.texi: Section on 'customize' added.
2008-04-10 08:49 Rocky Bernstein
* ChangeLog, cli/ruby-debug/command.rb, lib/ChangeLog: linecache is
required by ruby-debug-base not ruby-debug. Thanks Martin!
2008-04-10 08:00 Rocky Bernstein
* ChangeLog, Rakefile, lib/ChangeLog: Last change before 0.10.1
release.
2008-04-10 02:03 Rocky Bernstein
* ChangeLog, doc/rdebug-emacs.texi, lib/ChangeLog: Cosmetic stuff:
spelling corrections. Update node structure so texinfo
doesn't complain.
2008-04-09 21:22 Anders Lindgren
* doc/rdebug-emacs.texi: New chapter for multi-window debugging.
Intro reworked. NOTE: Menu nodes not updated.
2008-04-08 19:55 Anders Lindgren
* emacs/rdebug-shortkey.el, emacs/test/test-shortkey.el: Logic in
rdebug-internal-short-key-mode reworked. Test case updated.
2008-04-08 14:52 Rocky Bernstein
* ChangeLog, Rakefile, lib/ChangeLog: autorequire is deprecated and
presumably no longer needed
http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-talk/182827
2008-04-08 14:16 Rocky Bernstein
* test/data/raise.right: Another test data line number change
2008-04-08 14:12 Rocky Bernstein
* test/tdebug.rb: tdebug.rb alignment with rdebug
2008-04-08 14:02 Rocky Bernstein
* test/data/linetracep.cmd: Forgot to add this for the linetrace+
test.
2008-04-08 14:01 Rocky Bernstein
* emacs/rdebug-shortkey.el, emacs/test/test-shortkey.el: Attempt a
fix at shortkey internal. There be dragons here. Not sure what's
going on.
2008-04-08 10:23 Rocky Bernstein
* test/data/linetracep.right, test/test-trace.rb: Another linetrace
test. This time with linetrace+ set.
2008-04-08 10:19 Rocky Bernstein
* cli/ruby-debug/processor.rb, test/data/linetrace.cmd,
test/data/linetrace.right, test/test-trace.rb: processor.rb:
Silence possibly more warnings under $DEBUG
test/*: another linetrace test using the linetrace command.
2008-04-08 03:17 Rocky Bernstein
* test/data/output.right, test/data/quit.right: Test line numbers
changed. Sigh
2008-04-08 03:14 Rocky Bernstein
* test/tdebug.rb: Track rdebug.
2008-04-08 03:10 Rocky Bernstein
* test/test-trace.rb: Oops forget this test
2008-04-08 03:09 Rocky Bernstein
* bin/rdebug, cli/ruby-debug/processor.rb, test/data/trace.right,
test/tdebug.rb: Fix bug in --trace. Add regression test for that
as well.
Reduce (but alas not eliminate) extraneous line tracing.
2008-04-07 00:36 Rocky Bernstein
* CHANGES, ChangeLog, emacs/Makefile.am, emacs/rdebug-shortkey.el,
emacs/test/test-shortkey.el, lib/ChangeLog,
lib/ruby-debug-base.rb: ruby-debug-base.rb: document
Debugger.start parameters.
CHANGES: Revise what's happened
test-shortkey.el: A failing regression test because I think
rdebug-shortkey-mode
is not correct.
2008-04-06 03:03 Rocky Bernstein
* bin/rdebug, test/data/test-init-cygwin.right, test/test-init.rb:
Assigning $0 on cygwin seems weird. cygwin readline different too
2008-04-06 02:13 Rocky Bernstein
* test/data/test-init-osx.right, test/test-init.rb: read_command on
OSX seems to work differently. Punt for now.
2008-04-04 19:22 Rocky Bernstein
* cli/ruby-debug/commands/eval.rb: Sometimes remove_method isn't
defined.
2008-04-03 19:13 Rocky Bernstein
* doc/ruby-debug.texi: Small typos.
2008-04-03 19:01 Rocky Bernstein
* ChangeLog, doc/ruby-debug.texi, lib/ChangeLog,
lib/ruby-debug-base.rb, test/pm-base.rb: Allow setting
:post_mortem => true from Debugger.start.
2008-04-03 14:22 Rocky Bernstein
* Rakefile: We'll require linecache 0.4 or better. (Use SVN for
now. Will be released at same time as ruby-debug).
2008-04-03 14:15 Rocky Bernstein
* test/data/annotate.cmd, test/data/annotate.right,
test/data/post-mortem-osx.right, test/test-pm.rb: test-pm.rb,
post-mortem-osx.right: Allow for tmate command on OSX.
annotate.*: make sure 'set force on' doesn't happen.
2008-04-03 12:06 Rocky Bernstein
* cli/ruby-debug/commands/irb.rb: irb is no longer 'experimental'.
2008-04-02 00:50 Rocky Bernstein
* emacs/rdebug-annotate.el, emacs/rdebug-core.el,
emacs/rdebug-shortkey.el: Auto indent.
2008-04-02 00:27 Rocky Bernstein
* emacs/rdebug-core.el, emacs/rdebug-shortkey.el: Short-key mode is
turning itself on rather than off sometimes. More control over
trying to get rid of it when desired.
2008-03-30 03:01 Rocky Bernstein
* doc/ruby-debug.texi: Note that rdebug with test/unit might work.
2008-03-28 13:53 Rocky Bernstein
* ChangeLog, emacs/rdebug-annotate.el, lib/ChangeLog: Don't
unconditionally turn on short-key mode when annotations are on.
Use rdebug-short-key-mode setting to decide.
2008-03-23 17:47 Rocky Bernstein
* ChangeLog, Rakefile, cli/ruby-debug/commands/set.rb,
cli/ruby-debug/commands/settings.rb, lib/ChangeLog: set.rb ->
settings.rb since it's already one command per file, and
remove another :nodoc.
Rakefile: split long line
2008-03-23 04:12 Rocky Bernstein
* cli/ruby-debug/commands/show.rb, emacs/rdebug-core.el:
rdebug-core.el: allow rdebug-reset as an emasc command
show.rb: remove one more :nodoc
2008-03-21 19:04 Rocky Bernstein
* emacs/rdebug-breaks.el, emacs/rdebug-core.el,
emacs/rdebug-gud.el, emacs/test/test-cmd.el: Regularize names a
little bit. More work is needed though.
2008-03-21 18:39 Rocky Bernstein
* emacs/rdebug-breaks.el, emacs/rdebug-gud.el: Clear breakpoint
icons when quitting the debugger.
2008-03-19 19:56 Rocky Bernstein
* doc/ruby-debug.texi: more on --keep-frame-binding (for Martin)
2008-03-19 15:07 Rocky Bernstein
* cli/ruby-debug/commands/list.rb, test/data/list.cmd,
test/data/list.right, test/data/raise.right: Fix bug in "list -":
was scrolling back to negative lines. Had also been skipping
lines in forward list.
2008-03-19 07:36 Rocky Bernstein
* cli/ruby-debug/commands/info.rb: remove 'nodoc' (and doc) from
InfoCommand class
2008-03-19 07:31 Rocky Bernstein
* doc/rdebug-emacs.texi: Spelling correction.
2008-03-19 00:44 Rocky Bernstein
* doc/ruby-debug.texi: Some more spelling corrections.
2008-03-19 00:27 Rocky Bernstein
* doc/ruby-debug.texi: Spell-checking corrections.
2008-03-18 19:47 Rocky Bernstein
* CHANGES: Try to make more readible.
2008-03-18 16:05 Rocky Bernstein
* CHANGES, ChangeLog, cli/ruby-debug/commands/list.rb,
lib/ChangeLog, test/data/list.cmd, test/data/list.right,
test/test-finish.rb, test/test-list.rb: Fix bug in 'list' command
when wrapping off the end.
test-finish.rb: tolerate buggy in Ruby versions <= 1.8.7.
2008-03-18 00:43 Rocky Bernstein
* cli/ruby-debug/commands/list.rb,
cli/ruby-debug/commands/reload.rb: Split off reload into its own
file.
2008-03-17 14:29 Rocky Bernstein
* emacs/Makefile.am, emacs/rdebug-annotate.el, emacs/rdebug-cmd.el,
emacs/rdebug-fns.el, emacs/rdebug-locring.el,
emacs/rdebug-shortkey.el, emacs/rdebug-source.el,
emacs/rdebug-track.el, emacs/rdebug-vars.el,
emacs/test/test-fns.el: Regularize location ring function names.
2008-03-17 04:03 Rocky Bernstein
* cli/ruby-debug/command.rb, cli/ruby-debug/commands/stepping.rb,
test/data/stepping.right: stepping.rb: don't step if invalid
parameter
command.rb: remove dupliate defined warning msg
2008-03-17 03:34 Rocky Bernstein
* cli/ruby-debug/commands/stepping.rb: Small doc addition
2008-03-17 03:17 Rocky Bernstein
* cli/ruby-debug/commands/source.rb: Make source file-not-found and
error
2008-03-17 03:07 Rocky Bernstein
* cli/ruby-debug/commands/source.rb: tidy regexp
2008-03-17 03:05 Rocky Bernstein
* cli/ruby-debug/commands/script.rb,
cli/ruby-debug/commands/source.rb: Rename to match command name.
Add miniscule doc.
2008-03-16 22:04 Rocky Bernstein
* cli/ruby-debug/commands/continue.rb,
cli/ruby-debug/commands/frame.rb, doc/ruby-debug.texi: Doc
changes
2008-03-16 16:38 Rocky Bernstein
* doc/ruby-debug.texi, test/base/base.rb, test/base/catchpoint.rb,
test/base/load.rb: Add debug_load test. Document
Debugger::Context better. Small doc changes.
2008-03-16 15:01 Rocky Bernstein
* bin/rdebug: Typo.
2008-03-16 07:39 Rocky Bernstein
* cli/ruby-debug/commands/frame.rb,
cli/ruby-debug/commands/help.rb: Minor doc changes
2008-03-16 06:50 Rocky Bernstein
* test/data/ctrl.cmd, test/data/ctrl.right: Make sure width is set
explicitly so we don't have vagaries of the environment.
2008-03-16 06:44 Rocky Bernstein
* test/data/stepping.cmd, test/data/stepping.right: Possibly patch
change to upcoming 1.8.7. Punt for now.
2008-03-16 04:03 Rocky Bernstein
* CHANGES, cli/ruby-debug/commands/finish.rb,
cli/ruby-debug/commands/frame.rb,
cli/ruby-debug/commands/quit.rb, doc/ruby-debug.texi,
test/data/breakpoints.cmd, test/data/breakpoints.right,
test/data/finish.cmd, test/data/finish.right,
test/test-finish.rb: Change finish with no args to finish out of
the currently selected
frame and document that.
Add test for "finish" command.
ruby-debug.texi: Note 2nd-hook eval bug in "if" statements.
ruby-debug.texi:
2008-03-13 02:15 Rocky Bernstein
* CHANGES, cli/ruby-debug/commands/finish.rb,
cli/ruby-debug/processor.rb, doc/ruby-debug.texi,
ext/ruby_debug.c, lib/ruby-debug-base.rb, rdbg.rb: INCOMPATIBLE
CHANGE: "finish" works like gdb - stop just before the
most recent method finishes. Will now accept a number which stops
that
many frames completed. (Note that return line numbers will be
funny,
the first line of the method until Ruby 1.8.7.)
2008-03-11 03:53 Rocky Bernstein
* test/base/base.rb, test/base/catchpoint.rb: Reduce unnecessary
dependencies and scope.
2008-03-10 14:51 Rocky Bernstein
* cli/ruby-debug/commands/catchpoint.rb,
cli/ruby-debug/commands/info.rb: "catch" is same as "info catch".
Document better "catch" command.
2008-03-10 13:28 Rocky Bernstein
* ChangeLog, lib/ChangeLog, test/data/raise.right: Dunno why we are
now one line number less. So be it (for now).
2008-03-10 11:42 Rocky Bernstein
* cli/ruby-debug/commands/continue.rb,
cli/ruby-debug/commands/finish.rb,
cli/ruby-debug/commands/stepping.rb, cli/ruby-debug/processor.rb:
Break out finish.rb and continue.rb from stepping.rb
2008-03-09 23:30 Rocky Bernstein
* CHANGES, ChangeLog, lib/ChangeLog, test/data/info.right: For now
we require the duplicate numbers on conditionals.
2008-03-09 23:25 Rocky Bernstein
* Rakefile: Need at least linecache 0.3 now. Probably 0.4 for
release.
2008-03-07 04:26 Rocky Bernstein
* Rakefile, bin/rdebug, doc/ruby-debug.texi, test/test-dollar-0.rb:
Use ~/.rdboptrc (rdbopt.ini on MS Windows) to change default
options.
2008-03-03 04:14 Rocky Bernstein
* cli/ruby-debug/commands/control.rb,
cli/ruby-debug/commands/quit.rb: Split off quit to it's own file
since it doesn't share code with the
reset of "control". Smaller is better and it helps deal with
meeting
in the middle for extending debug 1.9 code.
2008-03-03 01:50 Rocky Bernstein
* cli/ruby-debug/commands/stepping.rb, test/data/stepping.cmd,
test/data/stepping.right: Allow spaces at the end of step and
next. Test ";" between commands.
2008-03-02 16:45 Rocky Bernstein
* CHANGES, cli/ruby-debug/commands/breakpoints.rb,
cli/ruby-debug/commands/frame.rb,
cli/ruby-debug/commands/threads.rb, doc/ruby-debug.texi,
test/data/frame.cmd, test/data/frame.right: Add ability to
specify a thread number in a "frame" command.
2008-03-02 13:47 Rocky Bernstein
* doc/ruby-debug.texi: Add Instructions for building on Microsoft
Windows.
2008-03-02 13:07 Rocky Bernstein
* doc/ruby-debug.texi: Small typo.
2008-03-02 04:20 Rocky Bernstein
* cli/ruby-debug/commands/breakpoints.rb, lib/ruby-debug-base.rb,
test/base/base.rb, test/data/breakpoints.right,
test/data/emacs_basic.right: Better error message for an invalid
break command.
2008-03-02 03:32 Rocky Bernstein
* emacs/rdebug-cmd.el: Bug in wrapping to newest in