]> git.cameronkatri.com Git - mandoc.git/blobdiff - man_term.c
Sync print_mdoc_head to print_man_head;
[mandoc.git] / man_term.c
index 219e0a2b7f458d649a914b86d2b877b7366e7c93..3afea4d6fd9f891390f7e1c198dd2c7feb523f98 100644 (file)
@@ -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