In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/cf79272008437cd5f1b73b971b2bd97401f83ae8?hp=86e082c9212ebc75a0e2d64a4445e2ed0d45cd2f>
- Log ----------------------------------------------------------------- commit cf79272008437cd5f1b73b971b2bd97401f83ae8 Author: Father Chrysostomos <[email protected]> Date: Tue Nov 11 15:42:13 2014 -0800 Increase $Exporter::VERSION to 5.72 M dist/Exporter/lib/Exporter.pm commit 76ebe3d013a3a13644645f9c725c99cf20c41174 Author: Father Chrysostomos <[email protected]> Date: Tue Nov 11 15:41:36 2014 -0800 Increase $Unicode::UCD::VERSION to 0.59 M lib/Unicode/UCD.pm commit df2b00e84681191d85888e385f6472b051ad2555 Author: Doug Bell <[email protected]> Date: Tue Nov 11 15:19:45 2014 -0600 rename anonymous list -> array in docs M dist/Exporter/lib/Exporter.pm M lib/B/Deparse.t M lib/Unicode/UCD.pm ----------------------------------------------------------------------- Summary of changes: dist/Exporter/lib/Exporter.pm | 4 ++-- lib/B/Deparse.t | 2 +- lib/Unicode/UCD.pm | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/dist/Exporter/lib/Exporter.pm b/dist/Exporter/lib/Exporter.pm index bc72c51..0b3db21 100644 --- a/dist/Exporter/lib/Exporter.pm +++ b/dist/Exporter/lib/Exporter.pm @@ -9,7 +9,7 @@ require 5.006; our $Debug = 0; our $ExportLevel = 0; our $Verbose ||= 0; -our $VERSION = '5.71'; +our $VERSION = '5.72'; our (%Cache); sub as_heavy { @@ -223,7 +223,7 @@ right. Specifications are in the form: [!]name This name only [!]:DEFAULT All names in @EXPORT - [!]:tag All names in $EXPORT_TAGS{tag} anonymous list + [!]:tag All names in $EXPORT_TAGS{tag} anonymous array [!]/pattern/ All names in @EXPORT and @EXPORT_OK which match A leading ! indicates that matching names should be deleted from the diff --git a/lib/B/Deparse.t b/lib/B/Deparse.t index d05e3af..75255cc 100644 --- a/lib/B/Deparse.t +++ b/lib/B/Deparse.t @@ -1559,7 +1559,7 @@ state($s3, $s4); #@z = ($s7, undef, $s8); ($s7, undef, $s8) = (1, 2, 3); #### -# anon lists with padrange +# anon arrays with padrange my($a, $b); my $c = [$a, $b]; my $d = {$a, $b}; diff --git a/lib/Unicode/UCD.pm b/lib/Unicode/UCD.pm index 8632a3f..f14e09f 100644 --- a/lib/Unicode/UCD.pm +++ b/lib/Unicode/UCD.pm @@ -5,7 +5,7 @@ use warnings; no warnings 'surrogate'; # surrogates can be inputs to this use charnames (); -our $VERSION = '0.58'; +our $VERSION = '0.59'; require Exporter; @@ -612,7 +612,7 @@ See also L</Blocks versus Scripts>. If supplied with an argument that can't be a code point, C<charblock()> tries to do the opposite and interpret the argument as an old-style block name. On an ASCII platform, the return value is a I<range set> with one range: an -anonymous list with a single element that consists of another anonymous list +anonymous array with a single element that consists of another anonymous array whose first element is the first code point in the block, and whose second element is the final code point in the block. On an EBCDIC platform, the first two Unicode blocks are not contiguous. Their range sets @@ -720,7 +720,7 @@ that it doesn't have scripts, this function returns C<"Unknown">. If supplied with an argument that can't be a code point, charscript() tries to do the opposite and interpret the argument as a script name. The -return value is a I<range set>: an anonymous list of lists that contain +return value is a I<range set>: an anonymous array of arrays that contain I<start-of-range>, I<end-of-range> code point pairs. You can test whether a code point is in a range set using the L</charinrange()> function. (To be precise, each I<range set> contains a third array element, -- Perl5 Master Repository
