summaryrefslogtreecommitdiff
path: root/autodoc.pl
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2020-12-14 13:38:47 -0700
committerKarl Williamson <khw@cpan.org>2020-12-14 13:50:00 -0700
commit3dc8ec40daa70758f9b0792b114a252232931588 (patch)
treeb15b2635ec36b9a2b0e07d77bba0569ab3810dcb /autodoc.pl
parent61246ce353b8779923b2b5a5597bb153c85d32c9 (diff)
downloadperl-3dc8ec40daa70758f9b0792b114a252232931588.tar.gz
autodoc.pl: Adjust max permissible line length
perldoc takes up 4 column indent, not 7.
Diffstat (limited to 'autodoc.pl')
-rw-r--r--autodoc.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/autodoc.pl b/autodoc.pl
index 06361b8f25..a9f6f6bf67 100644
--- a/autodoc.pl
+++ b/autodoc.pl
@@ -66,9 +66,9 @@ use Text::Tabs;
use strict;
use warnings;
-# 80 column terminal - 2 for pager adding 2 columns; -7 for nroff
-# indent;
-my $max_width = 80 - 2 - 7;
+# 80 column terminal - 2 for pager adding 2 columns; -4 for indent for
+# non-heading lines;
+my $max_width = 80 - 2 - 4;
if (@ARGV) {
my $workdir = shift;