diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-02-07 00:51:07 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-02-07 00:51:07 +0000 |
commit | 0380166916de8e54674c8ce7b60287b73107e6e6 (patch) | |
tree | 7640085b69fa81afaa42d1eaa80ee41d11cc03ed /docs | |
parent | 4fcefb9e90fa5f230c8a728943ca2db2727fe673 (diff) | |
download | busybox-0380166916de8e54674c8ce7b60287b73107e6e6.tar.gz |
space out supported applet names so the config list doesnt wrap on an 80col terminal
Diffstat (limited to 'docs')
-rwxr-xr-x | docs/autodocifier.pl | 11 |
1 files changed, 6 insertions, 5 deletions
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"; |