diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2018-08-14 01:27:48 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2018-08-14 01:27:48 +0000 |
commit | 9d71e0cbacf0681fd313f1e52974183828949490 (patch) | |
tree | fe87d1c5e15f3fb86b6d7864197bac592e4c32a7 /tree.c | |
parent | 185b4a7b69884b16b9c646e4efc4d357b38ac66c (diff) | |
download | mandoc-9d71e0cbacf0681fd313f1e52974183828949490.tar.gz |
support tail arguments on the .ME and .UE macros,
used for example in the ditroff(7) manual of the groff package
Diffstat (limited to 'tree.c')
-rw-r--r-- | tree.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -289,6 +289,8 @@ print_man(const struct roff_node *n, int indent) if (NODE_LINE & n->flags) putchar('*'); printf("%d:%d", n->line, n->pos + 1); + if (NODE_DELIMC & n->flags) + putchar(')'); if (NODE_EOS & n->flags) putchar('.'); putchar('\n'); |