summaryrefslogtreecommitdiffstats
path: root/man_term.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2012-07-16 21:59:40 +0000
committerIngo Schwarze <schwarze@openbsd.org>2012-07-16 21:59:40 +0000
commitaa2e27a6cfdc1cb6cf648d12d2ba453173c9283d (patch)
treeeafbc64ad65835c68085028b1ffa029089258e1e /man_term.c
parent281bbbb1c13720b538920e460b3ebfe1362b5f90 (diff)
downloadmandoc-aa2e27a6cfdc1cb6cf648d12d2ba453173c9283d.tar.gz
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
Diffstat (limited to 'man_term.c')
-rw-r--r--man_term.c2
1 files changed, 1 insertions, 1 deletions
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;