From: Jarkko Hietaniemi Date: Sun, 14 Jul 2002 14:37:28 +0000 (+0000) Subject: Move the debugger changes from "diagnostics" to "fixes". X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=c068d1403c6b9c8eeb26ff6606425ae9339fca45;p=p5sagit%2Fp5-mst-13.2.git Move the debugger changes from "diagnostics" to "fixes". p4raw-id: //depot/perl@17530 --- diff --git a/pod/perldelta.pod b/pod/perldelta.pod index 8253d3a..79305c3 100644 --- a/pod/perldelta.pod +++ b/pod/perldelta.pod @@ -2114,6 +2114,33 @@ Perl consistently handles such strings as zero in numeric contexts. =item * +Several debugger fixes: exit code now reflects the script exit code, +condition C<"0"> now treated correctly, the C command now checks +line number, C<$.> no longer gets corrupted, and all debugger output +now goes correctly to the socket if RemotePort is set. [561] + +=item * + +The debugger (perl5db.pl) has been modified to present a more +consistent commands interface, via (CommandSet=580). perl5db.t was +also added to test the changes, and as a placeholder for further tests. + +See L. + +=item * + +The debugger has a new C option to control the maximum +depth to which nested structures are dumped. The C command has +been extended so that C dumps out the value of I to a +depth of at most I levels. + +=item * + +The debugger can now show lexical variables if you have the CPAN +module PadWalker installed. + +=item * + The order of DESTROYs has been made more predictable. =item * @@ -2817,33 +2844,6 @@ respectively. =item * -Several debugger fixes: exit code now reflects the script exit code, -condition C<"0"> now treated correctly, the C command now checks -line number, C<$.> no longer gets corrupted, and all debugger output -now goes correctly to the socket if RemotePort is set. [561] - -=item * - -The debugger (perl5db.pl) has been modified to present a more -consistent commands interface, via (CommandSet=580). perl5db.t was -also added to test the changes, and as a placeholder for further tests. - -See L. - -=item * - -The debugger has a new C option to control the maximum -depth to which nested structures are dumped. The C command has -been extended so that C dumps out the value of I to a -depth of at most I levels. - -=item * - -The debugger can now show lexical variables if you have the CPAN -module PadWalker installed. - -=item * - If an attempt to use a (non-blessed) reference as an array index is made, a warning is given.