summaryrefslogtreecommitdiff
path: root/pod/buildtoc.PL
diff options
context:
space:
mode:
Diffstat (limited to 'pod/buildtoc.PL')
-rw-r--r--pod/buildtoc.PL8
1 files changed, 4 insertions, 4 deletions
diff --git a/pod/buildtoc.PL b/pod/buildtoc.PL
index 90deff4fdc..ff8d33c5d4 100644
--- a/pod/buildtoc.PL
+++ b/pod/buildtoc.PL
@@ -332,7 +332,7 @@ podset( @modules[ sort { $modname[$a] cmp $modname[$b] } 0 .. $#modules ] );
Here should be listed all the extra programs' documentation, but they
don't all have manual pages yet:
- =over
+ =over 4
=item a2p
@@ -385,13 +385,13 @@ sub podset {
}
if (s/^=head1 (.*)/=item $1/) {
unhead2();
- output "=over\n\n" unless $inhead1;
+ output "=over 4\n\n" unless $inhead1;
$inhead1 = 1;
output $_; nl(); next;
}
if (s/^=head2 (.*)/=item $1/) {
unitem();
- output "=over\n\n" unless $inhead2;
+ output "=over 4\n\n" unless $inhead2;
$inhead2 = 1;
output $_; nl(); next;
}
@@ -403,7 +403,7 @@ sub podset {
s/\s+$//;
next if /^[\d.]+$/;
next if $pod eq 'perlmodlib' && /^ftp:/;
- ##print "=over\n\n" unless $initem;
+ ##print "=over 4\n\n" unless $initem;
output ", " if $initem;
$initem = 1;
s/\.$//;