From: Slaven Rezic Date: Sat, 6 Feb 2010 22:19:39 +0000 (+0100) Subject: changed "an UTF..." to "a UTF..." in all Pods X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=a69635b797939b348e6ed6c090a2b89709dc47b1;hp=dc08a87be50ba933831af3060c5255da6ce8dea3;p=p5sagit%2Fp5-mst-13.2.git changed "an UTF..." to "a UTF..." in all Pods --- diff --git a/pod/perl592delta.pod b/pod/perl592delta.pod index cc23843..9648843 100644 --- a/pod/perl592delta.pod +++ b/pod/perl592delta.pod @@ -128,7 +128,7 @@ A new variable, ${^RE_DEBUG_FLAGS}, controls what debug flags are in effect for the regular expression engine when running under C. See L for details. -A new variable ${^UTF8LOCALE} indicates where an UTF-8 locale was detected +A new variable ${^UTF8LOCALE} indicates where a UTF-8 locale was detected by perl at startup. =head1 Modules and Pragmata diff --git a/pod/perldiag.pod b/pod/perldiag.pod index 5436042..aeb5d27 100644 --- a/pod/perldiag.pod +++ b/pod/perldiag.pod @@ -4945,7 +4945,7 @@ removed in a future version. =item UTF-16 surrogate %s -(W utf8) You tried to generate half of an UTF-16 surrogate by +(W utf8) You tried to generate half of a UTF-16 surrogate by requesting a Unicode character between the code points 0xD800 and 0xDFFF (inclusive). That range is reserved exclusively for the use of UTF-16 encoding (by having two 16-bit UCS-2 characters); but Perl diff --git a/pod/perluniintro.pod b/pod/perluniintro.pod index 24f1fb2..6c82efd 100644 --- a/pod/perluniintro.pod +++ b/pod/perluniintro.pod @@ -623,7 +623,7 @@ return the value of the internal "utf8ness" flag attached to the C<$string>. If the flag is off, the bytes in the scalar are interpreted as a single byte encoding. If the flag is on, the bytes in the scalar are interpreted as the (multi-byte, variable-length) UTF-8 encoded code -points of the characters. Bytes added to an UTF-8 encoded string are +points of the characters. Bytes added to a UTF-8 encoded string are automatically upgraded to UTF-8. If mixed non-UTF-8 and UTF-8 scalars are merged (double-quoted interpolation, explicit concatenation, and printf/sprintf parameter substitution), the result will be UTF-8 encoded diff --git a/pod/perlvar.pod b/pod/perlvar.pod index 834a880..febf15f 100644 --- a/pod/perlvar.pod +++ b/pod/perlvar.pod @@ -1321,7 +1321,7 @@ all its results against linear scans, and panicking on any discrepancy. =item ${^UTF8LOCALE} -This variable indicates whether an UTF-8 locale was detected by perl at +This variable indicates whether a UTF-8 locale was detected by perl at startup. This information is used by perl when it's in adjust-utf8ness-to-locale mode (as when run with the C<-CL> command-line switch); see L for more info on this.