aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/man_term.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2011-09-20 09:02:23 +0000
committerIngo Schwarze <schwarze@openbsd.org>2011-09-20 09:02:23 +0000
commitec760ca5e2ff2a1ab37653be558d6b2736219f4d (patch)
tree734ae6c6ca012430cfb5e35662417c0f6411dea1 /man_term.c
parenteee1390dda1a4f11d87431577c7c95163d5f60a5 (diff)
downloadmandoc-ec760ca5e2ff2a1ab37653be558d6b2736219f4d.tar.gz
mandoc-ec760ca5e2ff2a1ab37653be558d6b2736219f4d.tar.zst
mandoc-ec760ca5e2ff2a1ab37653be558d6b2736219f4d.zip
Sync print_mdoc_head to print_man_head;
this was forgotten after man_term.c rev. 1.25 on March 2, 2010. The benefit is a sane page header line when .Dt is very long. Reminded by Thomas Klausner <wiz at NetBSD>, thanks.
Diffstat (limited to 'man_term.c')
-rw-r--r--man_term.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/man_term.c b/man_term.c
index 219e0a2b..3afea4d6 100644
--- a/man_term.c
+++ b/man_term.c
@@ -1,4 +1,4 @@
-/* $Id: man_term.c,v 1.117 2011/09/19 22:36:16 schwarze Exp $ */
+/* $Id: man_term.c,v 1.118 2011/09/20 09:02:23 schwarze Exp $ */
/*
* Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2010, 2011 Ingo Schwarze <schwarze@openbsd.org>
@@ -1007,9 +1007,9 @@ print_man_head(struct termp *p, const void *arg)
* point we did so here.
*/
+ p->offset = 0;
p->rmargin = p->maxrmargin;
- p->offset = 0;
buf[0] = title[0] = '\0';
if (m->vol)
@@ -1019,12 +1019,12 @@ print_man_head(struct termp *p, const void *arg)
snprintf(title, BUFSIZ, "%s(%s)", m->title, m->msec);
titlen = term_strlen(p, title);
+ p->flags |= TERMP_NOBREAK | TERMP_NOSPACE;
p->offset = 0;
p->rmargin = 2 * (titlen+1) + buflen < p->maxrmargin ?
(p->maxrmargin -
term_strlen(p, buf) + term_len(p, 1)) / 2 :
p->maxrmargin - buflen;
- p->flags |= TERMP_NOBREAK | TERMP_NOSPACE;
term_word(p, title);
term_flushln(p);
@@ -1046,9 +1046,9 @@ print_man_head(struct termp *p, const void *arg)
term_flushln(p);
}
- p->rmargin = p->maxrmargin;
- p->offset = 0;
p->flags &= ~TERMP_NOSPACE;
+ p->offset = 0;
+ p->rmargin = p->maxrmargin;
/*
* Groff likes to have some leading spaces before content. Well