Cristian Ionescu-Idbohrn writes:
authorMike Frysinger <vapier@gentoo.org>
Tue, 7 Feb 2006 00:58:11 +0000 (00:58 -0000)
committerMike Frysinger <vapier@gentoo.org>
Tue, 7 Feb 2006 00:58:11 +0000 (00:58 -0000)
force enough space padding so that applet names always end up on their own line

docs/autodocifier.pl

index 3a29512..fa8c4c0 100755 (executable)
@@ -87,6 +87,13 @@ sub pod_for_usage {
                        split("\n", $usage->{example})) . "\n\n"
                : "";
 
+       # Pad the name so that the applet name gets a line
+       # by itself in BusyBox.txt
+       my $spaces = 10 - length($name);
+       if ($spaces > 0) {
+               $name .= " " x $spaces;
+       }
+
        return
                "=item B<$name>".
                "\n\n$name $trivial\n\n".