- Log -----------------------------------------------------------------
commit 0be0346991b9897be3779aad45b504f1f1d7c709
Author: brian d foy <bd...@cpan.org>
Date: Mon Nov 23 18:55:24 2009 -0600
* Remove some end-of-line whitespace from perlebcdic
M pod/perlebcdic.pod
commit aadc0e04984c523115970b0a0c0ba40ddcee3d41
Author: brian d foy <bd...@cpan.org>
Date: Mon Nov 23 18:53:39 2009 -0600
* Convert some pod files to UTF-8 (like all of the other pod files)
M pod/perl588delta.pod
M pod/perl593delta.pod
M pod/perlebcdic.pod
M pod/perlhist.pod
M pod/perlthrtut.pod
commit 734c9e01d195af6f982fec69a9589fd781d69a8b
Author: brian d foy <bd...@cpan.org>
Date: Mon Nov 23 18:52:57 2009 -0600
* Reword the sentence about checking unlink failures
M pod/perlfunc.pod
-----------------------------------------------------------------------
Summary of changes:
pod/perl588delta.pod | 2 +-
pod/perl593delta.pod | 4 ++--
pod/perlebcdic.pod | 10 +++++-----
pod/perlfunc.pod | 2 +-
pod/perlhist.pod | 2 +-
pod/perlthrtut.pod | 6 +++---
6 files changed, 13 insertions(+), 13 deletions(-)
diff --git a/pod/perl588delta.pod b/pod/perl588delta.pod
index e0ed647..16082b5 100644
--- a/pod/perl588delta.pod
+++ b/pod/perl588delta.pod
@@ -1383,7 +1383,7 @@ happens at program exit, it may be skipped completely.
=item *
-Salvador Fandi�o provided improvements to reduce the memory usage of C<sort>
+Salvador Fandiño provided improvements to reduce the memory usage of C<sort>
and to speed up some cases.
=item *
diff --git a/pod/perl593delta.pod b/pod/perl593delta.pod
index 80f8cb9..d67a5a5 100644
--- a/pod/perl593delta.pod
+++ b/pod/perl593delta.pod
@@ -107,7 +107,7 @@ details. (Contributed by Gisle Aas.)
The support for assertions, introduced in perl 5.9.0, has been improved.
The syntax for the C<-A> command-line switch has changed; it now accepts
an optional module name, defaulting to C<assertions::activate>. See
-L<assertions> and L<perlrun>. (Contributed by Salvador Fandi�o Garc�a.)
+L<assertions> and L<perlrun>. (Contributed by Salvador Fandiño García.)
=head2 Unicode Character Database 4.1.0
@@ -274,7 +274,7 @@ happens at program exit, it may be skipped completely.
=head2 sort() enhancements
-Salvador Fandi�o provided improvements to reduce the memory usage of C<sort>
+Salvador Fandiño provided improvements to reduce the memory usage of C<sort>
and to speed up some cases.
=head1 Installation and Configuration Improvements
diff --git a/pod/perlebcdic.pod b/pod/perlebcdic.pod
index 1a83e01..962244a 100644
--- a/pod/perlebcdic.pod
+++ b/pod/perlebcdic.pod
@@ -699,7 +699,7 @@ it in tr/// like so:
my $ebcdic_string = $ascii_string;
eval '$ebcdic_string =~ tr/' . $cp_037 . '/\000-\377/';
-To convert from EBCDIC 037 to ASCII just reverse the order of the tr///
+To convert from EBCDIC 037 to ASCII just reverse the order of the tr///
arguments like so:
my $ascii_string = $ebcdic_string;
@@ -1009,7 +1009,7 @@ to use the characters in the range explicitly:
sub Is_latin_1 {
my $char = substr(shift,0,1);
- $char =~ /[������������������������������������������������������������������������������������������������]/;
+ $char =~ /[ ¡¢£¤¥¦§¨©ª«¬®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øù ... [15 chars truncated]
}
Although that form may run into trouble in network transit (due to the
@@ -1062,9 +1062,9 @@ then sort(). If the data are primarily lowercase non Latin 1 then
apply tr/[A-Z]/[a-z]/ before sorting. If the data are primarily UPPERCASE
and include Latin-1 characters then apply:
- tr/[a-z]/[A-Z]/;
- tr/[������������������������������]/[������������������������������]/;
- s/�/SS/g;
+ tr/[a-z]/[A-Z]/;
+ tr/[àáâãäåæçèéêëìíîïðñòóôõöøùúûüýþ]/[ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞ/;
+ s/ß/SS/g;
then sort(). Do note however that such Latin-1 manipulation does not
address the E<yuml> C<y WITH DIAERESIS> character that will remain at
diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod
index 0f2b016..540b723 100644
--- a/pod/perlfunc.pod
+++ b/pod/perlfunc.pod
@@ -6870,7 +6870,7 @@ it successfully deleted. On failure, it returns false and sets C<$!>
unlink glob "*.bak";
On error, C<unlink> will not tell you which files it could not remove.
-If you care about the files you could not remove, try them one
+If you want to know which files you could not remove, try them one
at a time:
foreach my $file ( @goners ) {
diff --git a/pod/perlhist.pod b/pod/perlhist.pod
index 4be2daa..7ea61af 100644
--- a/pod/perlhist.pod
+++ b/pod/perlhist.pod
@@ -855,7 +855,7 @@ Jarkko Hietaniemi <F<j...@iki.fi>>.
Thanks to the collective memory of the Perlfolk. In addition to the
Keepers of the Pumpkin also Alan Champion, Mark Dominus,
-Andreas K�nig, John Macdonald, Matthias Neeracher, Jeff Okamoto,
+Andreas König, John Macdonald, Matthias Neeracher, Jeff Okamoto,
Michael Peppler, Randal Schwartz, and Paul D. Smith sent corrections
and additions. Abigail added file and patch size data for the 5.6.0 - 5.10
era.
diff --git a/pod/perlthrtut.pod b/pod/perlthrtut.pod
index 55a4cd5..00d5e57 100644
--- a/pod/perlthrtut.pod
+++ b/pod/perlthrtut.pod
@@ -1093,7 +1093,7 @@ L<http://lists.cpan.org/showlist.cgi?name=iThreads>
=head1 Bibliography
-Here's a short bibliography courtesy of J�rgen Christoffel:
+Here's a short bibliography courtesy of Jürgen Christoffel:
=head2 Introductory Texts
@@ -1150,7 +1150,7 @@ L<http://www.perl.com/pub/a/2002/06/11/threads.html>
=head1 Acknowledgements
Thanks (in no particular order) to Chaim Frenkel, Steve Fink, Gurusamy
-Sarathy, Ilya Zakharevich, Benjamin Sugars, J�rgen Christoffel, Joshua
+Sarathy, Ilya Zakharevich, Benjamin Sugars, Jürgen Christoffel, Joshua
Pritikin, and Alan Burlison, for their help in reality-checking and
polishing this article. Big thanks to Tom Christiansen for his rewrite
of the prime number generator.
@@ -1161,7 +1161,7 @@ Dan Sugalski E<lt>d...@sidhe.org<gt>
Slightly modified by Arthur Bergman to fit the new thread model/module.
-Reworked slightly by J�rg Walter E<lt>jw...@cpan.org<gt> to be more concise
+Reworked slightly by Jˆrg Walter E<lt>jw...@cpan.org<gt> to be more concise
about thread-safety of Perl code.
Rearranged slightly by Elizabeth Mattijsen E<lt>l...@dijkmat.nl<gt> to put
--
Perl5 Master Repository