From: Mike Frysinger Date: Tue, 7 Feb 2006 00:51:07 +0000 (-0000) Subject: space out supported applet names so the config list doesnt wrap on an 80col terminal X-Git-Tag: 1_1_0~237 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=0380166916de8e54674c8ce7b60287b73107e6e6;p=oweals%2Fbusybox.git space out supported applet names so the config list doesnt wrap on an 80col terminal --- diff --git a/docs/autodocifier.pl b/docs/autodocifier.pl index 95c9f410f..3a2951237 100755 --- a/docs/autodocifier.pl +++ b/docs/autodocifier.pl @@ -155,14 +155,15 @@ foreach (@ARGV) { my $generator = \&pod_for_usage; my @names = sort keys %docs; -print "\t[, [[, "; +my $line = "\t[, [[, "; for (my $i = 0; $i < $#names; $i++) { - if (($i + 2) % 8 == 0) { - print "\n\t"; + if (length ($line.$names[$i]) >= 65) { + print "$line\n\t"; + $line = ""; } - print "$names[$i], "; + $line .= "$names[$i], "; } -print $names[-1]; +print $line . $names[-1]; print "\n\n=head1 COMMAND DESCRIPTIONS\n"; print "\n=over 4\n\n";