diff --git a/tutorial/manpages b/tutorial/manpages
index d7e22b7dc53cf0a3e4fee40cd40941ece9a57563..3375ec574306cb0d45042653ebae2283887dcd33 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;