From: Karl Williamson Date: Wed, 18 Jan 2012 16:35:07 +0000 (-0700) Subject: locale.pm: Pod tweaks X-Git-Tag: accepted/trunk/20130322.191538~1016 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f36a39594f861ee6a30240be88388ba59426275e;p=platform%2Fupstream%2Fperl.git locale.pm: Pod tweaks --- diff --git a/lib/locale.pm b/lib/locale.pm index a51e2b1..2398599 100644 --- a/lib/locale.pm +++ b/lib/locale.pm @@ -1,25 +1,26 @@ package locale; -our $VERSION = '1.00'; +our $VERSION = '1.01'; =head1 NAME -locale - Perl pragma to use and avoid POSIX locales for built-in operations +locale - Perl pragma to use or avoid POSIX locales for built-in operations =head1 SYNOPSIS - @x = sort @y; # ASCII sorting order + @x = sort @y; # Unicode sorting order { use locale; @x = sort @y; # Locale-defined sorting order } - @x = sort @y; # ASCII sorting order again + @x = sort @y; # Unicode sorting order again =head1 DESCRIPTION This pragma tells the compiler to enable (or disable) the use of POSIX -locales for built-in operations (LC_CTYPE for regular expressions, and -LC_COLLATE for string comparison). Each "use locale" or "no locale" +locales for built-in operations (for example, LC_CTYPE for regular +expressions, LC_COLLATE for string comparison, and LC_NUMERIC for number +formatting). Each "use locale" or "no locale" affects statements to the end of the enclosing BLOCK. See L for more detailed information on how Perl supports