From: Rocco Rutte Date: Sat, 28 Mar 2009 15:01:40 +0000 (+0100) Subject: makedoc: make output slightly more readable X-Git-Tag: mutt-1-5-20-rel~127^2~20 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8bf04195145ca5e3dd2ca2c8918c5310ee8e8d7c;p=mutt makedoc: make output slightly more readable Add using HTML which save lots of vertical space. Also, drop the newline before to save some space. --- diff --git a/ChangeLog b/ChangeLog index 735b5598..29a3b68a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2009-03-27 18:02 +0100 Rocco Rutte (a06a2a4c5ebc) + + * rfc3676.c: f=f: Fix debug messages + +2009-03-19 17:19 +0100 Rocco Rutte (754ea0f091fc) + + * ChangeLog, doc/manual.xml.head: Improve section on patterns + 2009-03-19 16:47 +0100 Rocco Rutte (de835501d8db) * curs_lib.c: Fix progress update debug message diff --git a/doc/makedoc.c b/doc/makedoc.c index 8075d58a..e2014aa5 100644 --- a/doc/makedoc.c +++ b/doc/makedoc.c @@ -1143,7 +1143,7 @@ static int print_it (int special, char *str, FILE *out, int docstat) } case SP_END_TAB: { - fputs ("\n", out); + fputs ("", 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\n", out); docstat &= ~D_PA; } - fputs ("\n\n", out); + fputs ("\n\n\n", out); docstat |= D_DL; break; }