From 9f4645401a657293863f8a424b019604e2e89ed0 Mon Sep 17 00:00:00 2001 From: David Hedbor <david@hedbor.org> Date: Tue, 29 Feb 2000 12:35:12 -0800 Subject: [PATCH] Fixed formatting of arguments. Rev: tutorial/manpages:1.26 --- tutorial/manpages | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/tutorial/manpages b/tutorial/manpages index d7e22b7dc5..3375ec5743 100644 --- a/tutorial/manpages +++ b/tutorial/manpages @@ -1,5 +1,5 @@ // -*- Pike -*- -// $Id: manpages,v 1.25 1999/11/30 02:03:09 grubba Exp $ +// $Id: manpages,v 1.26 2000/02/29 20:35:12 neotron Exp $ #include "types.h" @@ -112,6 +112,16 @@ string make_manpage(string base, string|SGML data, string ind, string fbase) stripws=1; break; + case "aarg": + stripws = 1; + res += "\n.br\n\\fB"+make_manpage(base,tag->data,ind,fbase)+"\\fR"; + continue; + + case "adesc": + stripws = 1; + res += "\n.br\n.in +.8i .ll -.8i\n"+make_manpage(base,tag->data,ind,fbase) +"\n.in -.8i .ll +.8i\n"; + continue; + case "p": res+="\n.PP\n"; stripws=1; -- GitLab