LOGONLY mark 1b1ee2,065144 as NODOC since they're more test improvement thangs
[p5sagit/p5-mst-13.2.git] / pod / perlmodlib.PL
index effe9a3..dc2faf2 100644 (file)
@@ -18,7 +18,7 @@ my (@pragma, @mod, @files);
 
 open (MANIFEST, "../MANIFEST") or die $!;
 @files = grep m#(?:\.pm|\.pod|_pm\.PL)#, map {s/\s.*//s; $_}
-    grep {m#^lib# || m#^ext#} grep !m#/(?:t|demo)/#, <MANIFEST>;
+    grep { m#^(lib|ext|dist|cpan)/# && !m#/(?:t|demo)/# } <MANIFEST>;
 
 my %exceptions = (
     'abbrev' => 'Text::Abbrev',
@@ -1150,7 +1150,7 @@ of code that need less strictness.
 
 Always use B<-w>.
 
-Follow the guidelines in the perlstyle(1) manual.
+Follow the guidelines in L<perlstyle>.
 
 Always use B<-w>.
 
@@ -1409,8 +1409,6 @@ old behavior if people rely on it.  Document incompatible changes.
 
 =back
 
-=back
-
 =head2 Guidelines for Converting Perl 4 Library Scripts into Modules
 
 =over 4
@@ -1509,6 +1507,8 @@ or
 
 =back
 
+=back
+
 =head1 NOTE
 
 Perl does not enforce private and public parts of its modules as you may