diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2013-12-24 22:08:50 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2013-12-24 22:08:50 +0000 |
commit | ac94c36809f5a1da03eaaeebcb3d23cc7d8de077 (patch) | |
tree | 1d529119a7da9c5c13c24e99e1f672745a8101a3 /mdoc_man.c | |
parent | 472637a00de4c03052114688d7473918eb455561 (diff) | |
download | mandoc-ac94c36809f5a1da03eaaeebcb3d23cc7d8de077.tar.gz |
Implement SYNOPSIS .Fn indentation for -Tman.
Diffstat (limited to 'mdoc_man.c')
-rw-r--r-- | mdoc_man.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1091,6 +1091,9 @@ pre_fn(DECL_ARGS) if (NULL == n) return(0); + if (MDOC_SYNPRETTY & n->flags) + print_block(".HP 4n", MMAN_nl); + font_push('B'); print_node(meta, n); font_pop(); @@ -1111,7 +1114,7 @@ post_fn(DECL_ARGS) print_word(")"); if (MDOC_SYNPRETTY & n->flags) { print_word(";"); - outflags |= MMAN_br; + outflags |= MMAN_PP; } } |