diff options
author | Steve Peters <steve@fisharerojo.org> | 2007-11-15 21:20:41 +0000 |
---|---|---|
committer | Steve Peters <steve@fisharerojo.org> | 2007-11-15 21:20:41 +0000 |
commit | 4e592f10f45677b2800948f688180c0f1ee587b4 (patch) | |
tree | 7a65a88e97b2e3e30afc0e0609a02efe0ade7364 | |
parent | 2da7a6b5eab232c468b68576568f84877f032fd6 (diff) | |
download | perl-4e592f10f45677b2800948f688180c0f1ee587b4.tar.gz |
Change Pod::Checker to allow the "=encoding" Pod command. Fixes
RT #47271: podchecker says Unknown command 'encoding'
p4raw-id: //depot/perl@32330
-rw-r--r-- | lib/Pod/Checker.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Pod/Checker.pm b/lib/Pod/Checker.pm index e291617f36..e899f59031 100644 --- a/lib/Pod/Checker.pm +++ b/lib/Pod/Checker.pm @@ -10,7 +10,7 @@ package Pod::Checker; use vars qw($VERSION); -$VERSION = 1.43; ## Current version of this package +$VERSION = 1.4301; ## Current version of this package require 5.005; ## requires this Perl version or later use Pod::ParseUtils; ## for hyperlinks and lists @@ -364,6 +364,7 @@ my %VALID_COMMANDS = ( 'for' => 1, 'begin' => 1, 'end' => 1, + 'encoding' => '1', ); my %VALID_SEQUENCES = ( |