diff options
author | Werner Koch <[email protected]> | 2016-07-02 14:17:25 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2016-07-02 14:17:25 +0000 |
commit | aae3cdb61555db4efb26f522030c8303a731d4a9 (patch) | |
tree | fe36a12568da3c08641999cf598865a0fa9fee1e /doc/yat2m.c | |
parent | gpg: New option --export-filter (diff) | |
download | gnupg-aae3cdb61555db4efb26f522030c8303a731d4a9.tar.gz gnupg-aae3cdb61555db4efb26f522030c8303a731d4a9.zip |
yat2m: Fix table formatting.
* doc/yat2m.c (proc_texi_cmd): Use .TQ for @itemx. Print a .P at the
end of a level 0 table.
Signed-off-by: Werner Koch <[email protected]>
Diffstat (limited to 'doc/yat2m.c')
-rw-r--r-- | doc/yat2m.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/yat2m.c b/doc/yat2m.c index 7599081af..9b76f194b 100644 --- a/doc/yat2m.c +++ b/doc/yat2m.c @@ -746,7 +746,7 @@ proc_texi_cmd (FILE *fp, const char *command, const char *rest, size_t len, { "subsection", 6, "\n.SS " }, { "chapheading", 0}, { "item", 2, ".TP\n.B " }, - { "itemx", 2, ".TP\n.B " }, + { "itemx", 2, ".TQ\n.B " }, { "table", 3 }, { "itemize", 3 }, { "bullet", 0, "* " }, @@ -793,6 +793,8 @@ proc_texi_cmd (FILE *fp, const char *command, const char *rest, size_t len, { if ((*table_level)-- > 1) fputs (".RE\n", fp); + else + fputs (".P\n", fp); } else if (n >= 7 && !memcmp (s, "example", 7) && (!n || s[7] == ' ' || s[7] == '\t' || s[7] == '\n')) |