]>
git.cameronkatri.com Git - mandoc.git/blob - man_term.c
dc424128ba179e2898c95515f57438bd8f6e0c84
1 /* $Id: man_term.c,v 1.180 2015/04/18 16:06:40 schwarze Exp $ */
3 * Copyright (c) 2008-2012 Kristaps Dzonsons <kristaps@bsd.lv>
4 * Copyright (c) 2010-2015 Ingo Schwarze <schwarze@openbsd.org>
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
10 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHORS DISCLAIM ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
13 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
20 #include <sys/types.h>
29 #include "mandoc_aux.h"
37 #define MAXMARGINS 64 /* maximum number of indented scopes */
41 #define MANT_LITERAL (1 << 0)
42 int lmargin
[MAXMARGINS
]; /* margins (incl. vis. page) */
43 int lmargincur
; /* index of current margin */
44 int lmarginsz
; /* actual number of nested margins */
45 size_t offset
; /* default offset to visible page */
46 int pardist
; /* vert. space before par., unit: [v] */
49 #define DECL_ARGS struct termp *p, \
51 struct roff_node *n, \
52 const struct roff_meta *meta
55 int (*pre
)(DECL_ARGS
);
56 void (*post
)(DECL_ARGS
);
58 #define MAN_NOTEXT (1 << 0) /* Never has text children. */
61 static void print_man_nodelist(DECL_ARGS
);
62 static void print_man_node(DECL_ARGS
);
63 static void print_man_head(struct termp
*,
64 const struct roff_meta
*);
65 static void print_man_foot(struct termp
*,
66 const struct roff_meta
*);
67 static void print_bvspace(struct termp
*,
68 const struct roff_node
*, int);
70 static int pre_B(DECL_ARGS
);
71 static int pre_HP(DECL_ARGS
);
72 static int pre_I(DECL_ARGS
);
73 static int pre_IP(DECL_ARGS
);
74 static int pre_OP(DECL_ARGS
);
75 static int pre_PD(DECL_ARGS
);
76 static int pre_PP(DECL_ARGS
);
77 static int pre_RS(DECL_ARGS
);
78 static int pre_SH(DECL_ARGS
);
79 static int pre_SS(DECL_ARGS
);
80 static int pre_TP(DECL_ARGS
);
81 static int pre_UR(DECL_ARGS
);
82 static int pre_alternate(DECL_ARGS
);
83 static int pre_ft(DECL_ARGS
);
84 static int pre_ign(DECL_ARGS
);
85 static int pre_in(DECL_ARGS
);
86 static int pre_literal(DECL_ARGS
);
87 static int pre_ll(DECL_ARGS
);
88 static int pre_sp(DECL_ARGS
);
90 static void post_IP(DECL_ARGS
);
91 static void post_HP(DECL_ARGS
);
92 static void post_RS(DECL_ARGS
);
93 static void post_SH(DECL_ARGS
);
94 static void post_SS(DECL_ARGS
);
95 static void post_TP(DECL_ARGS
);
96 static void post_UR(DECL_ARGS
);
98 static const struct termact termacts
[MAN_MAX
] = {
99 { pre_sp
, NULL
, MAN_NOTEXT
}, /* br */
100 { NULL
, NULL
, 0 }, /* TH */
101 { pre_SH
, post_SH
, 0 }, /* SH */
102 { pre_SS
, post_SS
, 0 }, /* SS */
103 { pre_TP
, post_TP
, 0 }, /* TP */
104 { pre_PP
, NULL
, 0 }, /* LP */
105 { pre_PP
, NULL
, 0 }, /* PP */
106 { pre_PP
, NULL
, 0 }, /* P */
107 { pre_IP
, post_IP
, 0 }, /* IP */
108 { pre_HP
, post_HP
, 0 }, /* HP */
109 { NULL
, NULL
, 0 }, /* SM */
110 { pre_B
, NULL
, 0 }, /* SB */
111 { pre_alternate
, NULL
, 0 }, /* BI */
112 { pre_alternate
, NULL
, 0 }, /* IB */
113 { pre_alternate
, NULL
, 0 }, /* BR */
114 { pre_alternate
, NULL
, 0 }, /* RB */
115 { NULL
, NULL
, 0 }, /* R */
116 { pre_B
, NULL
, 0 }, /* B */
117 { pre_I
, NULL
, 0 }, /* I */
118 { pre_alternate
, NULL
, 0 }, /* IR */
119 { pre_alternate
, NULL
, 0 }, /* RI */
120 { pre_sp
, NULL
, MAN_NOTEXT
}, /* sp */
121 { pre_literal
, NULL
, 0 }, /* nf */
122 { pre_literal
, NULL
, 0 }, /* fi */
123 { NULL
, NULL
, 0 }, /* RE */
124 { pre_RS
, post_RS
, 0 }, /* RS */
125 { pre_ign
, NULL
, 0 }, /* DT */
126 { pre_ign
, NULL
, MAN_NOTEXT
}, /* UC */
127 { pre_PD
, NULL
, MAN_NOTEXT
}, /* PD */
128 { pre_ign
, NULL
, 0 }, /* AT */
129 { pre_in
, NULL
, MAN_NOTEXT
}, /* in */
130 { pre_ft
, NULL
, MAN_NOTEXT
}, /* ft */
131 { pre_OP
, NULL
, 0 }, /* OP */
132 { pre_literal
, NULL
, 0 }, /* EX */
133 { pre_literal
, NULL
, 0 }, /* EE */
134 { pre_UR
, post_UR
, 0 }, /* UR */
135 { NULL
, NULL
, 0 }, /* UE */
136 { pre_ll
, NULL
, MAN_NOTEXT
}, /* ll */
141 terminal_man(void *arg
, const struct roff_man
*man
)
144 const struct roff_meta
*meta
;
148 p
= (struct termp
*)arg
;
151 p
->rmargin
= p
->maxrmargin
= p
->defrmargin
;
152 p
->tabwidth
= term_len(p
, 5);
154 n
= man_node(man
)->child
;
155 meta
= man_meta(man
);
157 memset(&mt
, 0, sizeof(struct mtermp
));
159 mt
.lmargin
[mt
.lmargincur
] = term_len(p
, p
->defindent
);
160 mt
.offset
= term_len(p
, p
->defindent
);
163 if (p
->synopsisonly
) {
165 if (n
->tok
== MAN_SH
&&
166 n
->child
->child
->type
== ROFFT_TEXT
&&
167 !strcmp(n
->child
->child
->string
, "SYNOPSIS")) {
168 if (n
->child
->next
->child
!= NULL
)
169 print_man_nodelist(p
, &mt
,
170 n
->child
->next
->child
, meta
);
177 if (p
->defindent
== 0)
179 term_begin(p
, print_man_head
, print_man_foot
, meta
);
180 p
->flags
|= TERMP_NOSPACE
;
182 print_man_nodelist(p
, &mt
, n
, meta
);
188 * Printing leading vertical space before a block.
189 * This is used for the paragraph macros.
190 * The rules are pretty simple, since there's very little nesting going
191 * on here. Basically, if we're the first within another block (SS/SH),
192 * then don't emit vertical space. If we are (RS), then do. If not the
196 print_bvspace(struct termp
*p
, const struct roff_node
*n
, int pardist
)
202 if (n
->body
&& n
->body
->child
)
203 if (n
->body
->child
->type
== ROFFT_TBL
)
206 if (n
->parent
->type
== ROFFT_ROOT
|| n
->parent
->tok
!= MAN_RS
)
210 for (i
= 0; i
< pardist
; i
++)
226 term_setwidth(p
, n
->nchild
? n
->child
->string
: NULL
);
234 term_fontrepl(p
, TERMFONT_UNDER
);
239 pre_literal(DECL_ARGS
)
244 if (MAN_nf
== n
->tok
|| MAN_EX
== n
->tok
)
245 mt
->fl
|= MANT_LITERAL
;
247 mt
->fl
&= ~MANT_LITERAL
;
250 * Unlike .IP and .TP, .HP does not have a HEAD.
251 * So in case a second call to term_flushln() is needed,
252 * indentation has to be set up explicitly.
254 if (MAN_HP
== n
->parent
->tok
&& p
->rmargin
< p
->maxrmargin
) {
255 p
->offset
= p
->rmargin
;
256 p
->rmargin
= p
->maxrmargin
;
258 p
->flags
&= ~(TERMP_NOBREAK
| TERMP_BRIND
);
259 p
->flags
|= TERMP_NOSPACE
;
275 assert(n
->type
== ROFFT_TEXT
);
276 if (a2roffsu(n
->string
, &su
, SCALE_VS
))
277 mt
->pardist
= term_vspan(p
, &su
);
282 pre_alternate(DECL_ARGS
)
284 enum termfont font
[2];
285 struct roff_node
*nn
;
290 font
[0] = TERMFONT_NONE
;
291 font
[1] = TERMFONT_BOLD
;
294 font
[0] = TERMFONT_NONE
;
295 font
[1] = TERMFONT_UNDER
;
298 font
[0] = TERMFONT_BOLD
;
299 font
[1] = TERMFONT_NONE
;
302 font
[0] = TERMFONT_BOLD
;
303 font
[1] = TERMFONT_UNDER
;
306 font
[0] = TERMFONT_UNDER
;
307 font
[1] = TERMFONT_NONE
;
310 font
[0] = TERMFONT_UNDER
;
311 font
[1] = TERMFONT_BOLD
;
317 savelit
= MANT_LITERAL
& mt
->fl
;
318 mt
->fl
&= ~MANT_LITERAL
;
320 for (i
= 0, nn
= n
->child
; nn
; nn
= nn
->next
, i
= 1 - i
) {
321 term_fontrepl(p
, font
[i
]);
322 if (savelit
&& NULL
== nn
->next
)
323 mt
->fl
|= MANT_LITERAL
;
324 assert(nn
->type
== ROFFT_TEXT
);
325 term_word(p
, nn
->string
);
326 if (nn
->flags
& MAN_EOS
)
327 p
->flags
|= TERMP_SENTENCE
;
329 p
->flags
|= TERMP_NOSPACE
;
339 term_fontrepl(p
, TERMFONT_BOLD
);
348 p
->flags
|= TERMP_NOSPACE
;
350 if (NULL
!= (n
= n
->child
)) {
351 term_fontrepl(p
, TERMFONT_BOLD
);
352 term_word(p
, n
->string
);
354 if (NULL
!= n
&& NULL
!= n
->next
) {
355 term_fontrepl(p
, TERMFONT_UNDER
);
356 term_word(p
, n
->next
->string
);
359 term_fontrepl(p
, TERMFONT_NONE
);
360 p
->flags
|= TERMP_NOSPACE
;
370 if (NULL
== n
->child
) {
375 cp
= n
->child
->string
;
382 term_fontrepl(p
, TERMFONT_BOLD
);
387 term_fontrepl(p
, TERMFONT_UNDER
);
397 term_fontrepl(p
, TERMFONT_NONE
);
415 if (NULL
== n
->child
) {
416 p
->offset
= mt
->offset
;
420 cp
= n
->child
->string
;
430 if ( ! a2roffsu(++cp
, &su
, SCALE_EN
))
433 v
= (term_hspan(p
, &su
) + 11) / 24;
436 p
->offset
-= p
->offset
> v
? v
: p
->offset
;
441 if (p
->offset
> SHRT_MAX
)
442 p
->offset
= term_len(p
, p
->defindent
);
453 if ((NULL
== n
->prev
&& n
->parent
)) {
454 switch (n
->parent
->tok
) {
471 if (n
->tok
== MAN_br
)
473 else if (n
->child
== NULL
)
476 if ( ! a2roffsu(n
->child
->string
, &su
, SCALE_VS
))
478 len
= term_vspan(p
, &su
);
486 for (i
= 0; i
< len
; i
++)
496 const struct roff_node
*nn
;
501 print_bvspace(p
, n
, mt
->pardist
);
509 if ( ! (MANT_LITERAL
& mt
->fl
)) {
510 p
->flags
|= TERMP_NOBREAK
| TERMP_BRIND
;
514 /* Calculate offset. */
516 if ((nn
= n
->parent
->head
->child
) != NULL
&&
517 a2roffsu(nn
->string
, &su
, SCALE_EN
)) {
518 len
= term_hspan(p
, &su
) / 24;
519 if (len
< 0 && (size_t)(-len
) > mt
->offset
)
521 else if (len
> SHRT_MAX
)
522 len
= term_len(p
, p
->defindent
);
523 mt
->lmargin
[mt
->lmargincur
] = len
;
525 len
= mt
->lmargin
[mt
->lmargincur
];
527 p
->offset
= mt
->offset
;
528 p
->rmargin
= mt
->offset
+ len
;
541 * Compatibility with a groff bug.
542 * The .HP macro uses the undocumented .tag request
543 * which causes a line break and cancels no-space
544 * mode even if there isn't any output.
547 if (n
->child
== NULL
)
550 p
->flags
&= ~(TERMP_NOBREAK
| TERMP_BRIND
);
552 p
->offset
= mt
->offset
;
553 p
->rmargin
= p
->maxrmargin
;
566 mt
->lmargin
[mt
->lmargincur
] = term_len(p
, p
->defindent
);
567 print_bvspace(p
, n
, mt
->pardist
);
570 p
->offset
= mt
->offset
;
574 return(n
->type
!= ROFFT_HEAD
);
581 const struct roff_node
*nn
;
586 p
->flags
|= TERMP_NOSPACE
;
589 p
->flags
|= TERMP_NOBREAK
;
593 print_bvspace(p
, n
, mt
->pardist
);
599 /* Calculate the offset from the optional second argument. */
600 if ((nn
= n
->parent
->head
->child
) != NULL
&&
601 (nn
= nn
->next
) != NULL
&&
602 a2roffsu(nn
->string
, &su
, SCALE_EN
)) {
603 len
= term_hspan(p
, &su
) / 24;
604 if (len
< 0 && (size_t)(-len
) > mt
->offset
)
606 else if (len
> SHRT_MAX
)
607 len
= term_len(p
, p
->defindent
);
608 mt
->lmargin
[mt
->lmargincur
] = len
;
610 len
= mt
->lmargin
[mt
->lmargincur
];
614 p
->offset
= mt
->offset
;
615 p
->rmargin
= mt
->offset
+ len
;
617 savelit
= MANT_LITERAL
& mt
->fl
;
618 mt
->fl
&= ~MANT_LITERAL
;
621 print_man_node(p
, mt
, n
->child
, meta
);
624 mt
->fl
|= MANT_LITERAL
;
628 p
->offset
= mt
->offset
+ len
;
629 p
->rmargin
= p
->maxrmargin
;
645 p
->flags
&= ~TERMP_NOBREAK
;
647 p
->rmargin
= p
->maxrmargin
;
651 p
->offset
= mt
->offset
;
662 struct roff_node
*nn
;
667 p
->flags
|= TERMP_NOBREAK
;
671 p
->flags
|= TERMP_NOSPACE
;
674 print_bvspace(p
, n
, mt
->pardist
);
680 /* Calculate offset. */
682 if ((nn
= n
->parent
->head
->child
) != NULL
&&
683 nn
->string
!= NULL
&& ! (MAN_LINE
& nn
->flags
) &&
684 a2roffsu(nn
->string
, &su
, SCALE_EN
)) {
685 len
= term_hspan(p
, &su
) / 24;
686 if (len
< 0 && (size_t)(-len
) > mt
->offset
)
688 else if (len
> SHRT_MAX
)
689 len
= term_len(p
, p
->defindent
);
690 mt
->lmargin
[mt
->lmargincur
] = len
;
692 len
= mt
->lmargin
[mt
->lmargincur
];
696 p
->offset
= mt
->offset
;
697 p
->rmargin
= mt
->offset
+ len
;
699 savelit
= MANT_LITERAL
& mt
->fl
;
700 mt
->fl
&= ~MANT_LITERAL
;
702 /* Don't print same-line elements. */
704 while (NULL
!= nn
&& 0 == (MAN_LINE
& nn
->flags
))
708 print_man_node(p
, mt
, nn
, meta
);
713 mt
->fl
|= MANT_LITERAL
;
716 p
->offset
= mt
->offset
+ len
;
717 p
->rmargin
= p
->maxrmargin
;
719 p
->flags
&= ~TERMP_NOBREAK
;
738 p
->offset
= mt
->offset
;
752 mt
->fl
&= ~MANT_LITERAL
;
753 mt
->lmargin
[mt
->lmargincur
] = term_len(p
, p
->defindent
);
754 mt
->offset
= term_len(p
, p
->defindent
);
757 * No vertical space before the first subsection
758 * and after an empty subsection.
763 } while (n
!= NULL
&& n
->tok
!= MAN_MAX
&&
764 termacts
[n
->tok
].flags
& MAN_NOTEXT
);
765 if (n
== NULL
|| (n
->tok
== MAN_SS
&& n
->body
->child
== NULL
))
768 for (i
= 0; i
< mt
->pardist
; i
++)
772 term_fontrepl(p
, TERMFONT_BOLD
);
773 p
->offset
= term_len(p
, 3);
774 p
->rmargin
= mt
->offset
;
775 p
->trailspace
= mt
->offset
;
776 p
->flags
|= TERMP_NOBREAK
| TERMP_BRIND
;
779 p
->offset
= mt
->offset
;
780 p
->rmargin
= p
->maxrmargin
;
782 p
->flags
&= ~(TERMP_NOBREAK
| TERMP_BRIND
);
814 mt
->fl
&= ~MANT_LITERAL
;
815 mt
->lmargin
[mt
->lmargincur
] = term_len(p
, p
->defindent
);
816 mt
->offset
= term_len(p
, p
->defindent
);
819 * No vertical space before the first section
820 * and after an empty section.
825 } while (n
!= NULL
&& termacts
[n
->tok
].flags
& MAN_NOTEXT
);
826 if (n
== NULL
|| (n
->tok
== MAN_SH
&& n
->body
->child
== NULL
))
829 for (i
= 0; i
< mt
->pardist
; i
++)
833 term_fontrepl(p
, TERMFONT_BOLD
);
835 p
->rmargin
= mt
->offset
;
836 p
->trailspace
= mt
->offset
;
837 p
->flags
|= TERMP_NOBREAK
| TERMP_BRIND
;
840 p
->offset
= mt
->offset
;
841 p
->rmargin
= p
->maxrmargin
;
843 p
->flags
&= ~(TERMP_NOBREAK
| TERMP_BRIND
);
884 n
->aux
= SHRT_MAX
+ 1;
885 if (n
->child
== NULL
)
886 n
->aux
= mt
->lmargin
[mt
->lmargincur
];
887 else if (a2roffsu(n
->child
->string
, &su
, SCALE_EN
))
888 n
->aux
= term_hspan(p
, &su
) / 24;
889 if (n
->aux
< 0 && (size_t)(-n
->aux
) > mt
->offset
)
890 n
->aux
= -mt
->offset
;
891 else if (n
->aux
> SHRT_MAX
)
892 n
->aux
= term_len(p
, p
->defindent
);
894 mt
->offset
+= n
->aux
;
895 p
->offset
= mt
->offset
;
896 p
->rmargin
= p
->maxrmargin
;
898 if (++mt
->lmarginsz
< MAXMARGINS
)
899 mt
->lmargincur
= mt
->lmarginsz
;
901 mt
->lmargin
[mt
->lmargincur
] = term_len(p
, p
->defindent
);
919 mt
->offset
-= n
->parent
->head
->aux
;
920 p
->offset
= mt
->offset
;
922 if (--mt
->lmarginsz
< MAXMARGINS
)
923 mt
->lmargincur
= mt
->lmarginsz
;
930 return (n
->type
!= ROFFT_HEAD
);
937 if (n
->type
!= ROFFT_BLOCK
)
941 p
->flags
|= TERMP_NOSPACE
;
943 if (NULL
!= n
->child
->child
)
944 print_man_node(p
, mt
, n
->child
->child
, meta
);
946 p
->flags
|= TERMP_NOSPACE
;
951 print_man_node(DECL_ARGS
)
959 * If we have a blank line, output a vertical space.
960 * If we have a space as the first character, break
961 * before printing the line's data.
963 if ('\0' == *n
->string
) {
966 } else if (' ' == *n
->string
&& MAN_LINE
& n
->flags
)
969 term_word(p
, n
->string
);
973 if ( ! (n
->flags
& MAN_LINE
))
974 p
->flags
|= TERMP_NOSPACE
;
976 if (n
->next
!= NULL
&& ! (n
->next
->flags
& MAN_LINE
))
977 p
->flags
|= TERMP_NOSPACE
;
980 if (p
->tbl
.cols
== NULL
)
982 term_tbl(p
, n
->span
);
988 if ( ! (MAN_NOTEXT
& termacts
[n
->tok
].flags
))
989 term_fontrepl(p
, TERMFONT_NONE
);
992 if (termacts
[n
->tok
].pre
)
993 c
= (*termacts
[n
->tok
].pre
)(p
, mt
, n
, meta
);
996 print_man_nodelist(p
, mt
, n
->child
, meta
);
998 if (termacts
[n
->tok
].post
)
999 (*termacts
[n
->tok
].post
)(p
, mt
, n
, meta
);
1000 if ( ! (MAN_NOTEXT
& termacts
[n
->tok
].flags
))
1001 term_fontrepl(p
, TERMFONT_NONE
);
1005 * If we're in a literal context, make sure that words
1006 * together on the same line stay together. This is a
1007 * POST-printing call, so we check the NEXT word. Since
1008 * -man doesn't have nested macros, we don't need to be
1009 * more specific than this.
1011 if (mt
->fl
& MANT_LITERAL
&&
1012 ! (p
->flags
& (TERMP_NOBREAK
| TERMP_NONEWLINE
)) &&
1013 (n
->next
== NULL
|| n
->next
->flags
& MAN_LINE
)) {
1015 rmax
= p
->maxrmargin
;
1016 p
->rmargin
= p
->maxrmargin
= TERM_MAXMARGIN
;
1017 p
->flags
|= TERMP_NOSPACE
;
1018 if (n
->string
!= NULL
&& *n
->string
!= '\0')
1022 if (rm
< rmax
&& n
->parent
->tok
== MAN_HP
) {
1027 p
->maxrmargin
= rmax
;
1029 if (MAN_EOS
& n
->flags
)
1030 p
->flags
|= TERMP_SENTENCE
;
1035 print_man_nodelist(DECL_ARGS
)
1039 print_man_node(p
, mt
, n
, meta
);
1045 print_man_foot(struct termp
*p
, const struct roff_meta
*meta
)
1048 size_t datelen
, titlen
;
1050 assert(meta
->title
);
1054 term_fontrepl(p
, TERMFONT_NONE
);
1060 * Temporary, undocumented option to imitate mdoc(7) output.
1061 * In the bottom right corner, use the operating system
1062 * instead of the title.
1065 if ( ! p
->mdocstyle
) {
1066 if (meta
->hasbody
) {
1070 mandoc_asprintf(&title
, "%s(%s)",
1071 meta
->title
, meta
->msec
);
1072 } else if (meta
->os
) {
1073 title
= mandoc_strdup(meta
->os
);
1075 title
= mandoc_strdup("");
1077 datelen
= term_strlen(p
, meta
->date
);
1079 /* Bottom left corner: operating system. */
1081 p
->flags
|= TERMP_NOSPACE
| TERMP_NOBREAK
;
1084 p
->rmargin
= p
->maxrmargin
> datelen
?
1085 (p
->maxrmargin
+ term_len(p
, 1) - datelen
) / 2 : 0;
1088 term_word(p
, meta
->os
);
1091 /* At the bottom in the middle: manual date. */
1093 p
->offset
= p
->rmargin
;
1094 titlen
= term_strlen(p
, title
);
1095 p
->rmargin
= p
->maxrmargin
> titlen
? p
->maxrmargin
- titlen
: 0;
1096 p
->flags
|= TERMP_NOSPACE
;
1098 term_word(p
, meta
->date
);
1101 /* Bottom right corner: manual title and section. */
1103 p
->flags
&= ~TERMP_NOBREAK
;
1104 p
->flags
|= TERMP_NOSPACE
;
1106 p
->offset
= p
->rmargin
;
1107 p
->rmargin
= p
->maxrmargin
;
1109 term_word(p
, title
);
1115 print_man_head(struct termp
*p
, const struct roff_meta
*meta
)
1119 size_t vollen
, titlen
;
1121 assert(meta
->title
);
1124 volume
= NULL
== meta
->vol
? "" : meta
->vol
;
1125 vollen
= term_strlen(p
, volume
);
1127 /* Top left corner: manual title and section. */
1129 mandoc_asprintf(&title
, "%s(%s)", meta
->title
, meta
->msec
);
1130 titlen
= term_strlen(p
, title
);
1132 p
->flags
|= TERMP_NOBREAK
| TERMP_NOSPACE
;
1135 p
->rmargin
= 2 * (titlen
+1) + vollen
< p
->maxrmargin
?
1136 (p
->maxrmargin
- vollen
+ term_len(p
, 1)) / 2 :
1137 vollen
< p
->maxrmargin
? p
->maxrmargin
- vollen
: 0;
1139 term_word(p
, title
);
1142 /* At the top in the middle: manual volume. */
1144 p
->flags
|= TERMP_NOSPACE
;
1145 p
->offset
= p
->rmargin
;
1146 p
->rmargin
= p
->offset
+ vollen
+ titlen
< p
->maxrmargin
?
1147 p
->maxrmargin
- titlen
: p
->maxrmargin
;
1149 term_word(p
, volume
);
1152 /* Top right corner: title and section, again. */
1154 p
->flags
&= ~TERMP_NOBREAK
;
1156 if (p
->rmargin
+ titlen
<= p
->maxrmargin
) {
1157 p
->flags
|= TERMP_NOSPACE
;
1158 p
->offset
= p
->rmargin
;
1159 p
->rmargin
= p
->maxrmargin
;
1160 term_word(p
, title
);
1164 p
->flags
&= ~TERMP_NOSPACE
;
1166 p
->rmargin
= p
->maxrmargin
;
1169 * Groff prints three blank lines before the content.
1170 * Do the same, except in the temporary, undocumented
1171 * mode imitating mdoc(7) output.
1175 if ( ! p
->mdocstyle
) {