From aa2e27a6cfdc1cb6cf648d12d2ba453173c9283d Mon Sep 17 00:00:00 2001 From: Ingo Schwarze Date: Mon, 16 Jul 2012 21:59:40 +0000 Subject: Always fix the man(7) subsection header (.SS) indent to 3n, do not let it depend on the default indent provided by -Oindent. By default, this doesn't change anything because 7 / 2 = 3; in -Omdoc mode, it makes man(7) output the same as mdoc(7) output. OpenBSD rev. 1.87 --- man_term.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'man_term.c') diff --git a/man_term.c b/man_term.c index 873b250a..e7535cad 100644 --- a/man_term.c +++ b/man_term.c @@ -771,7 +771,7 @@ pre_SS(DECL_ARGS) break; case (MAN_HEAD): term_fontrepl(p, TERMFONT_BOLD); - p->offset = term_len(p, p->defindent/2); + p->offset = term_len(p, 3); break; case (MAN_BODY): p->offset = mt->offset; -- cgit