diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2009-06-18 21:34:55 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2009-06-18 21:34:55 +0000 |
commit | aa5e467e3ea8e58a32aa957eedcb771073825614 (patch) | |
tree | 37b824fbdfb2eb9a2ed84bd028750f9b8360a971 /usr.bin/mandoc/man_term.c | |
parent | 1614ab369b028b285ee2bb468f5ccc2cd9c372b7 (diff) |
sync to 1.7.16: adjust centering of header lines to groff conventions
Diffstat (limited to 'usr.bin/mandoc/man_term.c')
-rw-r--r-- | usr.bin/mandoc/man_term.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mandoc/man_term.c b/usr.bin/mandoc/man_term.c index edb532ad915..11864c49186 100644 --- a/usr.bin/mandoc/man_term.c +++ b/usr.bin/mandoc/man_term.c @@ -1,4 +1,4 @@ -/* $Id: man_term.c,v 1.4 2009/06/18 21:16:11 schwarze Exp $ */ +/* $Id: man_term.c,v 1.5 2009/06/18 21:34:54 schwarze Exp $ */ /* * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se> * @@ -493,7 +493,7 @@ print_head(struct termp *p, const struct man_meta *meta) meta->title, meta->msec); p->offset = 0; - p->rmargin = (p->maxrmargin - strlen(buf)) / 2; + p->rmargin = (p->maxrmargin - strlen(buf) + 1) / 2; p->flags |= TERMP_NOBREAK | TERMP_NOSPACE; term_word(p, title); |