diff options
author | Ævar Arnfjörð Bjarmason <avar@cpan.org> | 2010-03-30 14:09:24 +0000 |
---|---|---|
committer | Jesse Vincent <jesse@bestpractical.com> | 2010-05-08 16:35:35 -0400 |
commit | 49781f4a0073e7152ff1359411cc1790db050942 (patch) | |
tree | f4cbc1b500eac522b28853ab647ae042f24611e2 /pod | |
parent | bdbefedf6ca6c8253d0fccc6b9d99d7ae86dcd96 (diff) | |
download | perl-49781f4a0073e7152ff1359411cc1790db050942.tar.gz |
Add =encoding utf8 to all core non-ASCII POD files + test script
It's now possible to run:
perl Porting/checkpodencoding.pl
To check if the core contains any naughty POD that uses non-ASCII
without declaring an encoding.
With this patch all the POD in core (except POD tests we're ignoring)
has a correct =encoding directive. The script also flags problems in
lib/* and cpan/* which aren't being fixed as part of this commit.
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perl588delta.pod | 2 | ||||
-rw-r--r-- | pod/perl593delta.pod | 2 | ||||
-rw-r--r-- | pod/perlebcdic.pod | 2 | ||||
-rw-r--r-- | pod/perlhist.pod | 2 | ||||
-rw-r--r-- | pod/perlpodspec.pod | 1 | ||||
-rw-r--r-- | pod/perlrepository.pod | 2 | ||||
-rw-r--r-- | pod/perlthrtut.pod | 2 |
7 files changed, 13 insertions, 0 deletions
diff --git a/pod/perl588delta.pod b/pod/perl588delta.pod index a3d1df35b3..b2203bcf71 100644 --- a/pod/perl588delta.pod +++ b/pod/perl588delta.pod @@ -1,3 +1,5 @@ +=encoding utf8 + =head1 NAME perl588delta - what is new for perl v5.8.8 diff --git a/pod/perl593delta.pod b/pod/perl593delta.pod index 6c8587aee9..11f53ab088 100644 --- a/pod/perl593delta.pod +++ b/pod/perl593delta.pod @@ -1,3 +1,5 @@ +=encoding utf8 + =head1 NAME perl593delta - what is new for perl v5.9.3 diff --git a/pod/perlebcdic.pod b/pod/perlebcdic.pod index f17891237a..7c1082d06f 100644 --- a/pod/perlebcdic.pod +++ b/pod/perlebcdic.pod @@ -1,3 +1,5 @@ +=encoding utf8 + =head1 NAME perlebcdic - Considerations for running Perl on EBCDIC platforms diff --git a/pod/perlhist.pod b/pod/perlhist.pod index 2f7412753f..b3ed001398 100644 --- a/pod/perlhist.pod +++ b/pod/perlhist.pod @@ -1,3 +1,5 @@ +=encoding utf8 + =head1 NAME perlhist - the Perl history records diff --git a/pod/perlpodspec.pod b/pod/perlpodspec.pod index 0bf84e0910..dbe05391df 100644 --- a/pod/perlpodspec.pod +++ b/pod/perlpodspec.pod @@ -1,3 +1,4 @@ +=encoding utf8 =head1 NAME diff --git a/pod/perlrepository.pod b/pod/perlrepository.pod index feccf1a7c6..e7ef58a022 100644 --- a/pod/perlrepository.pod +++ b/pod/perlrepository.pod @@ -1,3 +1,5 @@ +=encoding utf8 + =for comment Consistent formatting of this file is achieved with: perl ./Porting/podtidy pod/perlrepository.pod diff --git a/pod/perlthrtut.pod b/pod/perlthrtut.pod index 18a6f46daa..fb947b66e1 100644 --- a/pod/perlthrtut.pod +++ b/pod/perlthrtut.pod @@ -1,3 +1,5 @@ +=encoding utf8 + =head1 NAME perlthrtut - Tutorial on threads in Perl |