From 8b5f857cbf54295fca51bbb57dae149012ef3e95 Mon Sep 17 00:00:00 2001 From: Ingo Schwarze Date: Fri, 13 Jul 2012 23:57:58 +0000 Subject: Adjust -Tman SYNOPSIS .Nm indentation using .HP; requested by millert@. There are still lots of ugly line breaks, to be fixed later. OpenBSD rev. 1.36 --- mdoc_man.c | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'mdoc_man.c') diff --git a/mdoc_man.c b/mdoc_man.c index d677ac7a..c372ba7a 100644 --- a/mdoc_man.c +++ b/mdoc_man.c @@ -1249,13 +1249,22 @@ pre_li(DECL_ARGS) static int pre_nm(DECL_ARGS) { + char *name; if (MDOC_BLOCK == n->type) pre_syn(n); if (MDOC_ELEM != n->type && MDOC_HEAD != n->type) return(1); - if (NULL == n->child && NULL == m->name) + name = n->child ? n->child->string : m->name; + if (NULL == name) return(0); + if (MDOC_HEAD == n->type) { + if (NULL == n->parent->prev) + outflags |= MMAN_sp; + print_block(".HP", 0); + printf(" %ldn", strlen(name) + 1); + outflags |= MMAN_nl; + } font_push('B'); if (NULL == n->child) print_word(m->name); -- cgit