From: Jarkko Hietaniemi Date: Wed, 20 Mar 2002 14:43:11 +0000 (+0000) Subject: Mention the external modules Encode::HanExtra and X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=2bcb0b458af1bb38a0b8ec0ec995e3cb497c1e1c;p=p5sagit%2Fp5-mst-13.2.git Mention the external modules Encode::HanExtra and PadWalker. p4raw-id: //depot/perl@15364 --- diff --git a/pod/perldelta.pod b/pod/perldelta.pod index 8ea2a49..bd90dde 100644 --- a/pod/perldelta.pod +++ b/pod/perldelta.pod @@ -627,9 +627,11 @@ included since its further use is discouraged. C, by Nick Ing-Simmons, provides a mechanism to translate between different character encodings. Support for Unicode, ISO-8859-*, ASCII, CP*, KOI8-R, and three variants of EBCDIC are -compiled in to the module. Several other encodings (like Japanese, -Chinese, and MacIntosh encodings) are included and will be loaded at -runtime. See L. +compiled in to the module. Several other encodings (like Chinese, +Japanese, Korean, and MacIntosh encodings) are included and will be +loaded at runtime. (For space considerations, the largest Chinese +encodings have been separated into their own CPAN module, +Encode::HanExtra). See L. Any encoding supported by Encode module is also available to the ":encoding()" layer if PerlIO is used. @@ -2377,11 +2379,11 @@ respectively. =item * -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. +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 +See L. =item * @@ -2392,6 +2394,11 @@ 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.