summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2012-07-17 21:38:43 +0200
committerYorhel <git@yorhel.nl>2012-07-17 21:38:43 +0200
commit91c13679238f2b41b423a74cf1a41a1ec8f7b787 (patch)
tree77a4252fb87c2c115e9f87b1e0e68895de8495ad /lib
parentc50e864ca32bb02c14729adcbdb7be6ed2ef9663 (diff)
ManUtils: Widen rendered man page to 90 columns
Looks slightly less cramped.
Diffstat (limited to 'lib')
-rw-r--r--lib/ManUtils/ManUtils.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ManUtils/ManUtils.pm b/lib/ManUtils/ManUtils.pm
index e222343..7ab8770 100644
--- a/lib/ManUtils/ManUtils.pm
+++ b/lib/ManUtils/ManUtils.pm
@@ -39,7 +39,7 @@ sub fmt {
# Call grog to figure out which preprocessors to use.
# $MANWIDTH works by using the following groff options: -rLL=100n -rLT=100n
- my $grog = run_cmd [qw|grog -Tutf8 -P-c -DUTF-8 -|],
+ my $grog = run_cmd [qw|grog -Tutf8 -P-c -DUTF-8 -rLL=90n -rLT=90n -|],
'<' => \$input,
'>' => \my $cmd,
'2>' => sub { $_[0] && push @$errors, "grog: $_[0]" };