From 3fc9951016d08e2467375e24094a468713637c1f Mon Sep 17 00:00:00 2001 From: Richard Jones Date: Tue, 17 Nov 2009 20:00:17 +0000 Subject: fish: Improve output of guestfish -h cmd Display this output like a short manual page. Don't put <..> around the parameters to the command. --- fish/fish.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'fish/fish.c') diff --git a/fish/fish.c b/fish/fish.c index 3f534def..41c6cbf5 100644 --- a/fish/fish.c +++ b/fish/fish.c @@ -457,7 +457,7 @@ pod2text (const char *name, const char *shortdesc, const char *str) printf ("%s - %s\n\n%s\n", name, shortdesc, str); return; } - fprintf (fp, "=head1 %s - %s\n\n", name, shortdesc); + fprintf (fp, "=head1 NAME\n\n%s - %s\n\n", name, shortdesc); fputs (str, fp); pclose (fp); } -- cgit