From: Jarkko Hietaniemi Date: Fri, 14 Jun 2002 22:34:27 +0000 (+0000) Subject: Group the debugger changes in one place. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=9cffef09bb5dd26e11c82b982f4e8d8597449682;p=p5sagit%2Fp5-mst-13.2.git Group the debugger changes in one place. p4raw-id: //depot/perl@17248 --- diff --git a/pod/perldelta.pod b/pod/perldelta.pod index 20a6e0c..dfb6b93 100644 --- a/pod/perldelta.pod +++ b/pod/perldelta.pod @@ -2072,13 +2072,6 @@ The order of DESTROYs has been made more predictable. =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 * - Perl 5.6.0 could emit spurious warnings about redefinition of dl_error() when statically building extensions into perl. This has been corrected. [561] @@ -2778,6 +2771,13 @@ 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.