]> granicus.if.org Git - mutt/commitdiff
makedoc: make output slightly more readable
authorRocco Rutte <pdmef@gmx.net>
Sat, 28 Mar 2009 15:01:40 +0000 (16:01 +0100)
committerRocco Rutte <pdmef@gmx.net>
Sat, 28 Mar 2009 15:01:40 +0000 (16:01 +0100)
Add <?dhtml... processing instructions to render <variablelist/>
using HTML <table/> which save lots of vertical space. Also, drop
the newline before </screen> to save some space.

ChangeLog
doc/makedoc.c

index 735b559886cb1ce7d425e8be44bef6c8315fa9c7..29a3b68a310d655c47e09b8f021643caa88ee412 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2009-03-27 18:02 +0100  Rocco Rutte  <pdmef@gmx.net>  (a06a2a4c5ebc)
+
+       * rfc3676.c: f=f: Fix debug messages
+
+2009-03-19 17:19 +0100  Rocco Rutte  <pdmef@gmx.net>  (754ea0f091fc)
+
+       * ChangeLog, doc/manual.xml.head: Improve section on patterns
+
 2009-03-19 16:47 +0100  Rocco Rutte  <pdmef@gmx.net>  (de835501d8db)
 
        * curs_lib.c: Fix progress update debug message
index 8075d58a1fbf550aa62e43ccd0929cbca2e72f25..e2014aa5c8bedc7dd39e544557bc18a668b01a05 100644 (file)
@@ -1143,7 +1143,7 @@ static int print_it (int special, char *str, FILE *out, int docstat)
        }
        case SP_END_TAB:
        {
-         fputs ("\n</screen>", out);
+         fputs ("</screen>", out);
          docstat &= ~D_TAB;
          docstat |= D_NL;
          break;
@@ -1155,7 +1155,7 @@ static int print_it (int special, char *str, FILE *out, int docstat)
            fputs ("\n</para>\n", out);
            docstat &= ~D_PA;
          }
-         fputs ("\n<variablelist>\n", out);
+         fputs ("\n<variablelist>\n<?dbhtml list-presentation=\"table\"?>\n", out);
          docstat |= D_DL;
          break;
        }