From: Rafael Garcia-Suarez Date: Mon, 8 Mar 2004 15:35:59 +0000 (+0000) Subject: perl591delta.pod update. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=466126d39b7f827ef9818652e6ebb9bd597175be;p=p5sagit%2Fp5-mst-13.2.git perl591delta.pod update. p4raw-id: //depot/perl@22468 --- diff --git a/pod/perl591delta.pod b/pod/perl591delta.pod index 96fea4c..df76f58 100644 --- a/pod/perl591delta.pod +++ b/pod/perl591delta.pod @@ -108,6 +108,10 @@ A new utility, C, makes it easy to run an individual regression test at the command line. C is part of Test::Harness, which users of earlier Perl versions can install from CPAN. +The perl debugger now supports a C command, to save the current +history to a file, and an C command, which prints the inheritance tree +of its argument (if the C module is installed.) + =head1 Documentation The documentation has been revised in places to produce more standard manpages. @@ -115,12 +119,11 @@ The documentation has been revised in places to produce more standard manpages. The long-existing feature of C regexps setting C<$_> and pos() is now documented. -The perl debugger now supports a C command, to save the current -history to a file, and an C command, which prints the inheritance tree -of its argument (if the C module is installed.) - =head1 Performance Enhancements +The operations involving case mapping on UTF-8 strings (uc(), lc(), +C, etc.) have been greatly speeded up. + =head1 Installation and Configuration Improvements =head1 Selected Bug Fixes @@ -160,6 +163,14 @@ C wasn't in effect in regexp-eval blocks (C). =head1 New or Changed Diagnostics +A new deprecation warning, I, +has been added, to warn against the use of the dubious and deprecated +construct + + my $x if 0; + +See L. + The fatal error "DESTROY created new reference to dead object" is now documented in L.