Change 17693 by [EMAIL PROTECTED] on 2002/08/08 14:25:16
Subject: [PATCH: lib/ExtUtils/MM_Unix.pm] Be less strict about what's POD.
From: Abigail <[EMAIL PROTECTED]>
Date: Thu, 25 Jul 2002 08:52:52 -0700 (16:52 BST)
Message-id: <[EMAIL PROTECTED]>
Affected files ...
.... //depot/perl/lib/ExtUtils/MM_Unix.pm#167 edit
Differences ...
==== //depot/perl/lib/ExtUtils/MM_Unix.pm#167 (text) ====
Index: perl/lib/ExtUtils/MM_Unix.pm
--- perl/lib/ExtUtils/MM_Unix.pm#166~17488~ Thu Jul 11 09:48:09 2002
+++ perl/lib/ExtUtils/MM_Unix.pm Thu Aug 8 07:25:16 2002
@@ -1426,7 +1426,7 @@
my($ispod)=0;
if (open(FH,"<$name")) {
while (<FH>) {
- if (/^=head1\s+\w+/) {
+ if (/^=\w/) {
$ispod=1;
last;
}
@@ -1455,7 +1455,7 @@
my($ispod)=0;
if (open(FH,"<$name")) {
while (<FH>) {
- if (/^=head1\s+\w+/) {
+ if (/^=\w/) {
$ispod=1;
last;
}
End of Patch.