summaryrefslogtreecommitdiff
path: root/pod
diff options
context:
space:
mode:
authorbrian d foy <bdfoy@cpan.org>2009-11-23 18:53:39 -0600
committerbrian d foy <bdfoy@cpan.org>2009-11-23 18:53:52 -0600
commitaadc0e04984c523115970b0a0c0ba40ddcee3d41 (patch)
tree3d9523901bd59573bd3c88c7a6eba23c5addbc60 /pod
parent734c9e01d195af6f982fec69a9589fd781d69a8b (diff)
downloadperl-aadc0e04984c523115970b0a0c0ba40ddcee3d41.tar.gz
* Convert some pod files to UTF-8 (like all of the other pod files)
Diffstat (limited to 'pod')
-rw-r--r--pod/perl588delta.pod2
-rw-r--r--pod/perl593delta.pod4
-rw-r--r--pod/perlebcdic.pod6
-rw-r--r--pod/perlhist.pod2
-rw-r--r--pod/perlthrtut.pod6
5 files changed, 10 insertions, 10 deletions
diff --git a/pod/perl588delta.pod b/pod/perl588delta.pod
index e0ed647d56..16082b5ed9 100644
--- a/pod/perl588delta.pod
+++ b/pod/perl588delta.pod
@@ -1383,7 +1383,7 @@ happens at program exit, it may be skipped completely.
=item *
-Salvador Fandio 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 80f8cb925f..d67a5a56f7 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 Fandio Garca.)
+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 Fandio 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 1a83e01f84..5f6a83de12 100644
--- a/pod/perlebcdic.pod
+++ b/pod/perlebcdic.pod
@@ -1009,7 +1009,7 @@ to use the characters in the range explicitly:
sub Is_latin_1 {
my $char = substr(shift,0,1);
- $char =~ /[]/;
+ $char =~ /[ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ]/;
}
Although that form may run into trouble in network transit (due to the
@@ -1063,8 +1063,8 @@ 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/[àáâãäåæçèéêëìíîïðñòóôõöøùúûüýþ]/[ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞ/;
+ 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/perlhist.pod b/pod/perlhist.pod
index 4be2daa3a0..7ea61af9bd 100644
--- a/pod/perlhist.pod
+++ b/pod/perlhist.pod
@@ -855,7 +855,7 @@ Jarkko Hietaniemi <F<jhi@iki.fi>>.
Thanks to the collective memory of the Perlfolk. In addition to the
Keepers of the Pumpkin also Alan Champion, Mark Dominus,
-Andreas Knig, 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 55a4cd56f9..00d5e57dcc 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 Jrgen 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, Jrgen 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>dan@sidhe.org<gt>
Slightly modified by Arthur Bergman to fit the new thread model/module.
-Reworked slightly by Jrg Walter E<lt>jwalt@cpan.org<gt> to be more concise
+Reworked slightly by Jˆrg Walter E<lt>jwalt@cpan.org<gt> to be more concise
about thread-safety of Perl code.
Rearranged slightly by Elizabeth Mattijsen E<lt>liz@dijkmat.nl<gt> to put