diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2012-07-16 21:59:40 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2012-07-16 21:59:40 +0000 |
commit | aa2e27a6cfdc1cb6cf648d12d2ba453173c9283d (patch) | |
tree | eafbc64ad65835c68085028b1ffa029089258e1e /man_term.c | |
parent | 281bbbb1c13720b538920e460b3ebfe1362b5f90 (diff) | |
download | mandoc-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |