]>
git.cameronkatri.com Git - mandoc.git/blob - mdoc_macro.c
1 /* $Id: mdoc_macro.c,v 1.141 2014/08/16 19:50:37 schwarze Exp $ */
3 * Copyright (c) 2008-2012 Kristaps Dzonsons <kristaps@bsd.lv>
4 * Copyright (c) 2010, 2012, 2013 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 AUTHOR DISCLAIMS ALL WARRANTIES
11 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR 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>
32 #include "libmandoc.h"
34 enum rew
{ /* see rew_dohalt() */
43 static int blk_full(MACRO_PROT_ARGS
);
44 static int blk_exp_close(MACRO_PROT_ARGS
);
45 static int blk_part_exp(MACRO_PROT_ARGS
);
46 static int blk_part_imp(MACRO_PROT_ARGS
);
47 static int ctx_synopsis(MACRO_PROT_ARGS
);
48 static int in_line_eoln(MACRO_PROT_ARGS
);
49 static int in_line_argn(MACRO_PROT_ARGS
);
50 static int in_line(MACRO_PROT_ARGS
);
51 static int phrase_ta(MACRO_PROT_ARGS
);
53 static int dword(struct mdoc
*, int, int, const char *,
55 static int append_delims(struct mdoc
*,
57 static enum mdoct
lookup(enum mdoct
, const char *);
58 static enum mdoct
lookup_raw(const char *);
59 static int make_pending(struct mdoc_node
*, enum mdoct
,
60 struct mdoc
*, int, int);
61 static int phrase(struct mdoc
*, int, int, char *);
62 static enum mdoct
rew_alt(enum mdoct
);
63 static enum rew
rew_dohalt(enum mdoct
, enum mdoc_type
,
64 const struct mdoc_node
*);
65 static int rew_elem(struct mdoc
*, enum mdoct
);
66 static int rew_last(struct mdoc
*,
67 const struct mdoc_node
*);
68 static int rew_sub(enum mdoc_type
, struct mdoc
*,
69 enum mdoct
, int, int);
71 const struct mdoc_macro __mdoc_macros
[MDOC_MAX
] = {
72 { in_line_argn
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* Ap */
73 { in_line_eoln
, MDOC_PROLOGUE
}, /* Dd */
74 { in_line_eoln
, MDOC_PROLOGUE
}, /* Dt */
75 { in_line_eoln
, MDOC_PROLOGUE
}, /* Os */
76 { blk_full
, MDOC_PARSED
| MDOC_JOIN
}, /* Sh */
77 { blk_full
, MDOC_PARSED
| MDOC_JOIN
}, /* Ss */
78 { in_line_eoln
, 0 }, /* Pp */
79 { blk_part_imp
, MDOC_PARSED
| MDOC_JOIN
}, /* D1 */
80 { blk_part_imp
, MDOC_PARSED
| MDOC_JOIN
}, /* Dl */
81 { blk_full
, MDOC_EXPLICIT
}, /* Bd */
82 { blk_exp_close
, MDOC_EXPLICIT
| MDOC_JOIN
}, /* Ed */
83 { blk_full
, MDOC_EXPLICIT
}, /* Bl */
84 { blk_exp_close
, MDOC_EXPLICIT
| MDOC_JOIN
}, /* El */
85 { blk_full
, MDOC_PARSED
| MDOC_JOIN
}, /* It */
86 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Ad */
87 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* An */
88 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Ar */
89 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* Cd */
90 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Cm */
91 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Dv */
92 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Er */
93 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Ev */
94 { in_line_eoln
, 0 }, /* Ex */
95 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Fa */
96 { in_line_eoln
, 0 }, /* Fd */
97 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Fl */
98 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Fn */
99 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Ft */
100 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* Ic */
101 { in_line_argn
, MDOC_CALLABLE
| MDOC_PARSED
}, /* In */
102 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* Li */
103 { blk_full
, MDOC_JOIN
}, /* Nd */
104 { ctx_synopsis
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Nm */
105 { blk_part_imp
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Op */
106 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Ot */
107 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Pa */
108 { in_line_eoln
, 0 }, /* Rv */
109 { in_line_argn
, MDOC_CALLABLE
| MDOC_PARSED
}, /* St */
110 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Va */
111 { ctx_synopsis
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Vt */
112 { in_line_argn
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Xr */
113 { in_line_eoln
, MDOC_JOIN
}, /* %A */
114 { in_line_eoln
, MDOC_JOIN
}, /* %B */
115 { in_line_eoln
, MDOC_JOIN
}, /* %D */
116 { in_line_eoln
, MDOC_JOIN
}, /* %I */
117 { in_line_eoln
, MDOC_JOIN
}, /* %J */
118 { in_line_eoln
, 0 }, /* %N */
119 { in_line_eoln
, MDOC_JOIN
}, /* %O */
120 { in_line_eoln
, 0 }, /* %P */
121 { in_line_eoln
, MDOC_JOIN
}, /* %R */
122 { in_line_eoln
, MDOC_JOIN
}, /* %T */
123 { in_line_eoln
, 0 }, /* %V */
124 { blk_exp_close
, MDOC_CALLABLE
| MDOC_PARSED
|
125 MDOC_EXPLICIT
| MDOC_JOIN
}, /* Ac */
126 { blk_part_exp
, MDOC_CALLABLE
| MDOC_PARSED
|
127 MDOC_EXPLICIT
| MDOC_JOIN
}, /* Ao */
128 { blk_part_imp
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* Aq */
129 { in_line_argn
, MDOC_CALLABLE
| MDOC_PARSED
}, /* At */
130 { blk_exp_close
, MDOC_CALLABLE
| MDOC_PARSED
|
131 MDOC_EXPLICIT
| MDOC_JOIN
}, /* Bc */
132 { blk_full
, MDOC_EXPLICIT
}, /* Bf */
133 { blk_part_exp
, MDOC_CALLABLE
| MDOC_PARSED
|
134 MDOC_EXPLICIT
| MDOC_JOIN
}, /* Bo */
135 { blk_part_imp
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* Bq */
136 { in_line_argn
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Bsx */
137 { in_line_argn
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Bx */
138 { in_line_eoln
, 0 }, /* Db */
139 { blk_exp_close
, MDOC_CALLABLE
| MDOC_PARSED
|
140 MDOC_EXPLICIT
| MDOC_JOIN
}, /* Dc */
141 { blk_part_exp
, MDOC_CALLABLE
| MDOC_PARSED
|
142 MDOC_EXPLICIT
| MDOC_JOIN
}, /* Do */
143 { blk_part_imp
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* Dq */
144 { blk_exp_close
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_EXPLICIT
}, /* Ec */
145 { blk_exp_close
, MDOC_EXPLICIT
| MDOC_JOIN
}, /* Ef */
146 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* Em */
147 { blk_part_exp
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_EXPLICIT
}, /* Eo */
148 { in_line_argn
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Fx */
149 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Ms */
150 { in_line_argn
, MDOC_CALLABLE
| MDOC_PARSED
|
151 MDOC_IGNDELIM
| MDOC_JOIN
}, /* No */
152 { in_line_argn
, MDOC_CALLABLE
| MDOC_PARSED
|
153 MDOC_IGNDELIM
| MDOC_JOIN
}, /* Ns */
154 { in_line_argn
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Nx */
155 { in_line_argn
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Ox */
156 { blk_exp_close
, MDOC_CALLABLE
| MDOC_PARSED
|
157 MDOC_EXPLICIT
| MDOC_JOIN
}, /* Pc */
158 { in_line_argn
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_IGNDELIM
}, /* Pf */
159 { blk_part_exp
, MDOC_CALLABLE
| MDOC_PARSED
|
160 MDOC_EXPLICIT
| MDOC_JOIN
}, /* Po */
161 { blk_part_imp
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* Pq */
162 { blk_exp_close
, MDOC_CALLABLE
| MDOC_PARSED
|
163 MDOC_EXPLICIT
| MDOC_JOIN
}, /* Qc */
164 { blk_part_imp
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* Ql */
165 { blk_part_exp
, MDOC_CALLABLE
| MDOC_PARSED
|
166 MDOC_EXPLICIT
| MDOC_JOIN
}, /* Qo */
167 { blk_part_imp
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* Qq */
168 { blk_exp_close
, MDOC_EXPLICIT
| MDOC_JOIN
}, /* Re */
169 { blk_full
, MDOC_EXPLICIT
}, /* Rs */
170 { blk_exp_close
, MDOC_CALLABLE
| MDOC_PARSED
|
171 MDOC_EXPLICIT
| MDOC_JOIN
}, /* Sc */
172 { blk_part_exp
, MDOC_CALLABLE
| MDOC_PARSED
|
173 MDOC_EXPLICIT
| MDOC_JOIN
}, /* So */
174 { blk_part_imp
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* Sq */
175 { in_line_eoln
, 0 }, /* Sm */
176 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* Sx */
177 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* Sy */
178 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Tn */
179 { in_line_argn
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* Ux */
180 { blk_exp_close
, MDOC_EXPLICIT
| MDOC_CALLABLE
| MDOC_PARSED
}, /* Xc */
181 { blk_part_exp
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_EXPLICIT
}, /* Xo */
182 { blk_full
, MDOC_EXPLICIT
| MDOC_CALLABLE
}, /* Fo */
183 { blk_exp_close
, MDOC_CALLABLE
| MDOC_PARSED
|
184 MDOC_EXPLICIT
| MDOC_JOIN
}, /* Fc */
185 { blk_part_exp
, MDOC_CALLABLE
| MDOC_PARSED
|
186 MDOC_EXPLICIT
| MDOC_JOIN
}, /* Oo */
187 { blk_exp_close
, MDOC_CALLABLE
| MDOC_PARSED
|
188 MDOC_EXPLICIT
| MDOC_JOIN
}, /* Oc */
189 { blk_full
, MDOC_EXPLICIT
}, /* Bk */
190 { blk_exp_close
, MDOC_EXPLICIT
| MDOC_JOIN
}, /* Ek */
191 { in_line_eoln
, 0 }, /* Bt */
192 { in_line_eoln
, 0 }, /* Hf */
193 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Fr */
194 { in_line_eoln
, 0 }, /* Ud */
195 { in_line
, 0 }, /* Lb */
196 { in_line_eoln
, 0 }, /* Lp */
197 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Lk */
198 { in_line
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Mt */
199 { blk_part_imp
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* Brq */
200 { blk_part_exp
, MDOC_CALLABLE
| MDOC_PARSED
|
201 MDOC_EXPLICIT
| MDOC_JOIN
}, /* Bro */
202 { blk_exp_close
, MDOC_CALLABLE
| MDOC_PARSED
|
203 MDOC_EXPLICIT
| MDOC_JOIN
}, /* Brc */
204 { in_line_eoln
, MDOC_JOIN
}, /* %C */
205 { in_line_argn
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Es */
206 { blk_part_imp
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* En */
207 { in_line_argn
, MDOC_CALLABLE
| MDOC_PARSED
}, /* Dx */
208 { in_line_eoln
, MDOC_JOIN
}, /* %Q */
209 { in_line_eoln
, 0 }, /* br */
210 { in_line_eoln
, 0 }, /* sp */
211 { in_line_eoln
, 0 }, /* %U */
212 { phrase_ta
, MDOC_CALLABLE
| MDOC_PARSED
| MDOC_JOIN
}, /* Ta */
213 { in_line_eoln
, 0 }, /* ll */
216 const struct mdoc_macro
* const mdoc_macros
= __mdoc_macros
;
220 * This is called at the end of parsing. It must traverse up the tree,
221 * closing out open [implicit] scopes. Obviously, open explicit scopes
225 mdoc_macroend(struct mdoc
*mdoc
)
229 /* Scan for open explicit scopes. */
231 n
= MDOC_VALID
& mdoc
->last
->flags
?
232 mdoc
->last
->parent
: mdoc
->last
;
234 for ( ; n
; n
= n
->parent
)
235 if (MDOC_BLOCK
== n
->type
&&
236 MDOC_EXPLICIT
& mdoc_macros
[n
->tok
].flags
)
237 mandoc_msg(MANDOCERR_BLK_NOEND
, mdoc
->parse
,
238 n
->line
, n
->pos
, mdoc_macronames
[n
->tok
]);
240 /* Rewind to the first. */
242 return(rew_last(mdoc
, mdoc
->first
));
246 * Look up a macro from within a subsequent context.
249 lookup(enum mdoct from
, const char *p
)
252 if ( ! (MDOC_PARSED
& mdoc_macros
[from
].flags
))
254 return(lookup_raw(p
));
258 * Lookup a macro following the initial line macro.
261 lookup_raw(const char *p
)
265 if (MDOC_MAX
== (res
= mdoc_hash_find(p
)))
267 if (MDOC_CALLABLE
& mdoc_macros
[res
].flags
)
273 rew_last(struct mdoc
*mdoc
, const struct mdoc_node
*to
)
275 struct mdoc_node
*n
, *np
;
278 mdoc
->next
= MDOC_NEXT_SIBLING
;
281 while (mdoc
->last
!= to
) {
283 * Save the parent here, because we may delete the
284 * mdoc->last node in the post-validation phase and reset
285 * it to mdoc->last->parent, causing a step in the closing
288 np
= mdoc
->last
->parent
;
289 if ( ! mdoc_valid_post(mdoc
))
294 mdoc
->last
->last
= n
;
297 return(mdoc_valid_post(mdoc
));
301 * For a block closing macro, return the corresponding opening one.
302 * Otherwise, return the macro itself.
305 rew_alt(enum mdoct tok
)
347 * Rewinding to tok, how do we have to handle *p?
348 * REWIND_NONE: *p would delimit tok, but no tok scope is open
349 * inside *p, so there is no need to rewind anything at all.
350 * REWIND_THIS: *p matches tok, so rewind *p and nothing else.
351 * REWIND_MORE: *p is implicit, rewind it and keep searching for tok.
352 * REWIND_FORCE: *p is explicit, but tok is full, force rewinding *p.
353 * REWIND_LATER: *p is explicit and still open, postpone rewinding.
354 * REWIND_ERROR: No tok block is open at all.
357 rew_dohalt(enum mdoct tok
, enum mdoc_type type
,
358 const struct mdoc_node
*p
)
362 * No matching token, no delimiting block, no broken block.
363 * This can happen when full implicit macros are called for
364 * the first time but try to rewind their previous
367 if (MDOC_ROOT
== p
->type
)
368 return(MDOC_BLOCK
== type
&&
369 MDOC_EXPLICIT
& mdoc_macros
[tok
].flags
?
370 REWIND_ERROR
: REWIND_NONE
);
373 * When starting to rewind, skip plain text
374 * and nodes that have already been rewound.
376 if (MDOC_TEXT
== p
->type
|| MDOC_VALID
& p
->flags
)
380 * The easiest case: Found a matching token.
381 * This applies to both blocks and elements.
385 return(p
->end
? REWIND_NONE
:
386 type
== p
->type
? REWIND_THIS
: REWIND_MORE
);
389 * While elements do require rewinding for themselves,
390 * they never affect rewinding of other nodes.
392 if (MDOC_ELEM
== p
->type
)
396 * Blocks delimited by our target token get REWIND_MORE.
397 * Blocks delimiting our target token get REWIND_NONE.
401 if (MDOC_It
== p
->tok
)
405 if (MDOC_BODY
== p
->type
&& MDOC_Bl
== p
->tok
)
409 * XXX Badly nested block handling still fails badly
410 * when one block is breaking two blocks of the same type.
411 * This is an incomplete and extremely ugly workaround,
412 * required to let the OpenBSD tree build.
415 if (MDOC_Op
== p
->tok
)
423 if (MDOC_BODY
== p
->type
&& MDOC_Sh
== p
->tok
)
427 if (MDOC_ROOT
== p
->parent
->type
)
429 if (MDOC_Nd
== p
->tok
|| MDOC_Ss
== p
->tok
||
438 * Default block rewinding rules.
439 * In particular, always skip block end markers,
440 * and let all blocks rewind Nm children.
442 if (ENDBODY_NOT
!= p
->end
|| MDOC_Nm
== p
->tok
||
443 (MDOC_BLOCK
== p
->type
&&
444 ! (MDOC_EXPLICIT
& mdoc_macros
[tok
].flags
)))
448 * By default, closing out full blocks
449 * forces closing of broken explicit blocks,
450 * while closing out partial blocks
451 * allows delayed rewinding by default.
453 return (&blk_full
== mdoc_macros
[tok
].fp
?
454 REWIND_FORCE
: REWIND_LATER
);
458 rew_elem(struct mdoc
*mdoc
, enum mdoct tok
)
463 if (MDOC_ELEM
!= n
->type
)
465 assert(MDOC_ELEM
== n
->type
);
466 assert(tok
== n
->tok
);
468 return(rew_last(mdoc
, n
));
472 * We are trying to close a block identified by tok,
473 * but the child block *broken is still open.
474 * Thus, postpone closing the tok block
475 * until the rew_sub call closing *broken.
478 make_pending(struct mdoc_node
*broken
, enum mdoct tok
,
479 struct mdoc
*mdoc
, int line
, int ppos
)
481 struct mdoc_node
*breaker
;
484 * Iterate backwards, searching for the block matching tok,
485 * that is, the block breaking the *broken block.
487 for (breaker
= broken
->parent
; breaker
; breaker
= breaker
->parent
) {
490 * If the *broken block had already been broken before
491 * and we encounter its breaker, make the tok block
492 * pending on the inner breaker.
493 * Graphically, "[A breaker=[B broken=[C->B B] tok=A] C]"
494 * becomes "[A broken=[B [C->B B] tok=A] C]"
495 * and finally "[A [B->A [C->B B] A] C]".
497 if (breaker
== broken
->pending
) {
502 if (REWIND_THIS
!= rew_dohalt(tok
, MDOC_BLOCK
, breaker
))
504 if (MDOC_BODY
== broken
->type
)
505 broken
= broken
->parent
;
509 * If another, outer breaker is already pending on
510 * the *broken block, we must not clobber the link
511 * to the outer breaker, but make it pending on the
512 * new, now inner breaker.
513 * Graphically, "[A breaker=[B broken=[C->A A] tok=B] C]"
514 * becomes "[A breaker=[B->A broken=[C A] tok=B] C]"
515 * and finally "[A [B->A [C->B A] B] C]".
517 if (broken
->pending
) {
518 struct mdoc_node
*taker
;
521 * If the breaker had also been broken before,
522 * it cannot take on the outer breaker itself,
523 * but must hand it on to its own breakers.
524 * Graphically, this is the following situation:
525 * "[A [B breaker=[C->B B] broken=[D->A A] tok=C] D]"
526 * "[A taker=[B->A breaker=[C->B B] [D->C A] C] D]"
529 while (taker
->pending
)
530 taker
= taker
->pending
;
531 taker
->pending
= broken
->pending
;
533 broken
->pending
= breaker
;
534 mandoc_vmsg(MANDOCERR_BLK_NEST
, mdoc
->parse
, line
, ppos
,
535 "%s breaks %s", mdoc_macronames
[tok
],
536 mdoc_macronames
[broken
->tok
]);
541 * Found no matching block for tok.
542 * Are you trying to close a block that is not open?
548 rew_sub(enum mdoc_type t
, struct mdoc
*mdoc
,
549 enum mdoct tok
, int line
, int ppos
)
555 switch (rew_dohalt(tok
, t
, n
)) {
560 (MDOC_NEWLINE
& mdoc
->flags
&&
561 ! (MDOC_EXPLICIT
& mdoc_macros
[tok
].flags
));
564 mandoc_vmsg(MANDOCERR_BLK_BROKEN
, mdoc
->parse
,
565 line
, ppos
, "%s breaks %s",
566 mdoc_macronames
[tok
],
567 mdoc_macronames
[n
->tok
]);
571 (MDOC_NEWLINE
& mdoc
->flags
? 1 : 0);
575 if (make_pending(n
, tok
, mdoc
, line
, ppos
) ||
580 mandoc_msg(MANDOCERR_BLK_NOTOPEN
,
581 mdoc
->parse
, line
, ppos
,
582 mdoc_macronames
[tok
]);
589 if ( ! rew_last(mdoc
, n
))
593 * The current block extends an enclosing block.
594 * Now that the current block ends, close the enclosing block, too.
596 while (NULL
!= (n
= n
->pending
)) {
597 if ( ! rew_last(mdoc
, n
))
599 if (MDOC_HEAD
== n
->type
&&
600 ! mdoc_body_alloc(mdoc
, n
->line
, n
->pos
, n
->tok
))
608 * Allocate a word and check whether it's punctuation or not.
609 * Punctuation consists of those tokens found in mdoc_isdelim().
612 dword(struct mdoc
*mdoc
, int line
, int col
, const char *p
,
613 enum mdelim d
, int may_append
)
620 ! ((MDOC_SYNOPSIS
| MDOC_KEEP
| MDOC_SMOFF
) & mdoc
->flags
) &&
621 DELIM_NONE
== d
&& MDOC_TEXT
== mdoc
->last
->type
&&
622 DELIM_NONE
== mdoc_isdelim(mdoc
->last
->string
)) {
623 mdoc_word_append(mdoc
, p
);
627 if ( ! mdoc_word_alloc(mdoc
, line
, col
, p
))
631 mdoc
->last
->flags
|= MDOC_DELIMO
;
634 * Closing delimiters only suppress the preceding space
635 * when they follow something, not when they start a new
636 * block or element, and not when they follow `No'.
638 * XXX Explicitly special-casing MDOC_No here feels
639 * like a layering violation. Find a better way
640 * and solve this in the code related to `No'!
643 else if (DELIM_CLOSE
== d
&& mdoc
->last
->prev
&&
644 mdoc
->last
->prev
->tok
!= MDOC_No
&&
645 mdoc
->last
->parent
->tok
!= MDOC_Fd
)
646 mdoc
->last
->flags
|= MDOC_DELIMC
;
652 append_delims(struct mdoc
*mdoc
, int line
, int *pos
, char *buf
)
658 if ('\0' == buf
[*pos
])
663 ac
= mdoc_zargs(mdoc
, line
, pos
, buf
, &p
);
665 if (ARGS_ERROR
== ac
)
667 else if (ARGS_EOLN
== ac
)
670 dword(mdoc
, line
, la
, p
, DELIM_MAX
, 1);
673 * If we encounter end-of-sentence symbols, then trigger
676 * XXX: it's easy to allow this to propagate outward to
677 * the last symbol, such that `. )' will cause the
678 * correct double-spacing. However, (1) groff isn't
679 * smart enough to do this and (2) it would require
680 * knowing which symbols break this behaviour, for
681 * example, `. ;' shouldn't propagate the double-space.
683 if (mandoc_eos(p
, strlen(p
)))
684 mdoc
->last
->flags
|= MDOC_EOS
;
691 * Close out block partial/full explicit.
694 blk_exp_close(MACRO_PROT_ARGS
)
696 struct mdoc_node
*body
; /* Our own body. */
697 struct mdoc_node
*later
; /* A sub-block starting later. */
698 struct mdoc_node
*n
; /* For searching backwards. */
700 int j
, lastarg
, maxargs
, flushed
, nl
;
702 enum mdoct atok
, ntok
;
705 nl
= MDOC_NEWLINE
& mdoc
->flags
;
712 mdoc
->flags
&= ~MDOC_KEEP
;
719 * Search backwards for beginnings of blocks,
720 * both of our own and of pending sub-blocks.
724 for (n
= mdoc
->last
; n
; n
= n
->parent
) {
725 if (MDOC_VALID
& n
->flags
)
728 /* Remember the start of our own body. */
729 if (MDOC_BODY
== n
->type
&& atok
== n
->tok
) {
730 if (ENDBODY_NOT
== n
->end
)
735 if (MDOC_BLOCK
!= n
->type
|| MDOC_Nm
== n
->tok
)
737 if (atok
== n
->tok
) {
741 * Found the start of our own block.
742 * When there is no pending sub block,
743 * just proceed to closing out.
749 * When there is a pending sub block,
750 * postpone closing out the current block
751 * until the rew_sub() closing out the sub-block.
753 make_pending(later
, tok
, mdoc
, line
, ppos
);
756 * Mark the place where the formatting - but not
757 * the scope - of the current block ends.
759 if ( ! mdoc_endbody_alloc(mdoc
, line
, ppos
,
760 atok
, body
, ENDBODY_SPACE
))
766 * When finding an open sub block, remember the last
767 * open explicit block, or, in case there are only
768 * implicit ones, the first open implicit block.
771 MDOC_EXPLICIT
& mdoc_macros
[later
->tok
].flags
)
773 if (MDOC_It
!= n
->tok
)
777 if ( ! (MDOC_PARSED
& mdoc_macros
[tok
].flags
)) {
778 if ('\0' != buf
[*pos
])
779 mandoc_vmsg(MANDOCERR_ARG_SKIP
,
780 mdoc
->parse
, line
, ppos
,
781 "%s %s", mdoc_macronames
[tok
],
783 if ( ! rew_sub(MDOC_BODY
, mdoc
, tok
, line
, ppos
))
785 return(rew_sub(MDOC_BLOCK
, mdoc
, tok
, line
, ppos
));
788 if ( ! rew_sub(MDOC_BODY
, mdoc
, tok
, line
, ppos
))
791 if (NULL
== later
&& maxargs
> 0)
792 if ( ! mdoc_tail_alloc(mdoc
, line
, ppos
, rew_alt(tok
)))
795 for (flushed
= j
= 0; ; j
++) {
798 if (j
== maxargs
&& ! flushed
) {
799 if ( ! rew_sub(MDOC_BLOCK
, mdoc
, tok
, line
, ppos
))
804 ac
= mdoc_args(mdoc
, line
, pos
, buf
, tok
, &p
);
806 if (ARGS_ERROR
== ac
)
808 if (ARGS_PUNCT
== ac
)
813 ntok
= ARGS_QWORD
== ac
? MDOC_MAX
: lookup(tok
, p
);
815 if (MDOC_MAX
== ntok
) {
816 if ( ! dword(mdoc
, line
, lastarg
, p
, DELIM_MAX
,
817 MDOC_JOIN
& mdoc_macros
[tok
].flags
))
823 if ( ! rew_sub(MDOC_BLOCK
, mdoc
, tok
, line
, ppos
))
828 mdoc
->flags
&= ~MDOC_NEWLINE
;
830 if ( ! mdoc_macro(mdoc
, ntok
, line
, lastarg
, pos
, buf
))
835 if ( ! flushed
&& ! rew_sub(MDOC_BLOCK
, mdoc
, tok
, line
, ppos
))
840 return(append_delims(mdoc
, line
, pos
, buf
));
844 in_line(MACRO_PROT_ARGS
)
846 int la
, scope
, cnt
, nc
, nl
;
851 struct mdoc_arg
*arg
;
854 nl
= MDOC_NEWLINE
& mdoc
->flags
;
857 * Whether we allow ignored elements (those without content,
858 * usually because of reserved words) to squeak by.
880 for (arg
= NULL
;; ) {
882 av
= mdoc_argv(mdoc
, line
, tok
, &arg
, pos
, buf
);
884 if (ARGV_WORD
== av
) {
897 for (cnt
= scope
= 0;; ) {
899 ac
= mdoc_args(mdoc
, line
, pos
, buf
, tok
, &p
);
901 if (ARGS_ERROR
== ac
)
905 if (ARGS_PUNCT
== ac
)
908 ntok
= ARGS_QWORD
== ac
? MDOC_MAX
: lookup(tok
, p
);
911 * In this case, we've located a submacro and must
912 * execute it. Close out scope, if open. If no
913 * elements have been generated, either create one (nc)
914 * or raise a warning.
917 if (MDOC_MAX
!= ntok
) {
918 if (scope
&& ! rew_elem(mdoc
, tok
))
920 if (nc
&& 0 == cnt
) {
921 if ( ! mdoc_elem_alloc(mdoc
,
922 line
, ppos
, tok
, arg
))
924 if ( ! rew_last(mdoc
, mdoc
->last
))
926 } else if ( ! nc
&& 0 == cnt
) {
928 mandoc_msg(MANDOCERR_MACRO_EMPTY
,
929 mdoc
->parse
, line
, ppos
,
930 mdoc_macronames
[tok
]);
933 if ( ! mdoc_macro(mdoc
, ntok
, line
, la
, pos
, buf
))
937 return(append_delims(mdoc
, line
, pos
, buf
));
941 * Non-quote-enclosed punctuation. Set up our scope, if
942 * a word; rewind the scope, if a delimiter; then append
946 d
= ARGS_QWORD
== ac
? DELIM_NONE
: mdoc_isdelim(p
);
948 if (DELIM_NONE
!= d
) {
950 * If we encounter closing punctuation, no word
951 * has been omitted, no scope is open, and we're
952 * allowed to have an empty element, then start
953 * a new scope. `Ar', `Fl', and `Li', only do
954 * this once per invocation. There may be more
955 * of these (all of them?).
957 if (0 == cnt
&& (nc
|| MDOC_Li
== tok
) &&
958 DELIM_CLOSE
== d
&& ! scope
) {
959 if ( ! mdoc_elem_alloc(mdoc
,
960 line
, ppos
, tok
, arg
))
962 if (MDOC_Ar
== tok
|| MDOC_Li
== tok
||
968 * Close out our scope, if one is open, before
971 if (scope
&& ! rew_elem(mdoc
, tok
))
974 } else if ( ! scope
) {
975 if ( ! mdoc_elem_alloc(mdoc
, line
, ppos
, tok
, arg
))
983 if ( ! dword(mdoc
, line
, la
, p
, d
,
984 MDOC_JOIN
& mdoc_macros
[tok
].flags
))
988 * `Fl' macros have their scope re-opened with each new
989 * word so that the `-' can be added to each one without
990 * having to parse out spaces.
992 if (scope
&& MDOC_Fl
== tok
) {
993 if ( ! rew_elem(mdoc
, tok
))
999 if (scope
&& ! rew_elem(mdoc
, tok
))
1003 * If no elements have been collected and we're allowed to have
1004 * empties (nc), open a scope and close it out. Otherwise,
1008 if (nc
&& 0 == cnt
) {
1009 if ( ! mdoc_elem_alloc(mdoc
, line
, ppos
, tok
, arg
))
1011 if ( ! rew_last(mdoc
, mdoc
->last
))
1013 } else if ( ! nc
&& 0 == cnt
) {
1014 mdoc_argv_free(arg
);
1015 mandoc_msg(MANDOCERR_MACRO_EMPTY
, mdoc
->parse
,
1016 line
, ppos
, mdoc_macronames
[tok
]);
1021 return(append_delims(mdoc
, line
, pos
, buf
));
1025 blk_full(MACRO_PROT_ARGS
)
1027 int la
, nl
, nparsed
;
1028 struct mdoc_arg
*arg
;
1029 struct mdoc_node
*head
; /* save of head macro */
1030 struct mdoc_node
*body
; /* save of body macro */
1031 struct mdoc_node
*n
;
1034 enum margserr ac
, lac
;
1038 nl
= MDOC_NEWLINE
& mdoc
->flags
;
1040 /* Skip items outside lists. */
1042 if (tok
== MDOC_It
) {
1043 for (n
= mdoc
->last
; n
; n
= n
->parent
)
1044 if (n
->tok
== MDOC_Bl
&&
1045 ! (n
->flags
& MDOC_VALID
))
1048 mandoc_vmsg(MANDOCERR_IT_STRAY
, mdoc
->parse
,
1049 line
, ppos
, "It %s", buf
+ *pos
);
1050 if ( ! mdoc_elem_alloc(mdoc
, line
, ppos
,
1053 return(rew_elem(mdoc
, MDOC_br
));
1057 /* Close out prior implicit scope. */
1059 if ( ! (MDOC_EXPLICIT
& mdoc_macros
[tok
].flags
)) {
1060 if ( ! rew_sub(MDOC_BODY
, mdoc
, tok
, line
, ppos
))
1062 if ( ! rew_sub(MDOC_BLOCK
, mdoc
, tok
, line
, ppos
))
1067 * This routine accommodates implicitly- and explicitly-scoped
1068 * macro openings. Implicit ones first close out prior scope
1069 * (seen above). Delay opening the head until necessary to
1070 * allow leading punctuation to print. Special consideration
1071 * for `It -column', which has phrase-part syntax instead of
1072 * regular child nodes.
1075 for (arg
= NULL
;; ) {
1077 av
= mdoc_argv(mdoc
, line
, tok
, &arg
, pos
, buf
);
1079 if (ARGV_WORD
== av
) {
1084 if (ARGV_EOLN
== av
)
1089 mdoc_argv_free(arg
);
1093 if ( ! mdoc_block_alloc(mdoc
, line
, ppos
, tok
, arg
))
1099 * Exception: Heads of `It' macros in `-diag' lists are not
1100 * parsed, even though `It' macros in general are parsed.
1102 nparsed
= MDOC_It
== tok
&&
1103 MDOC_Bl
== mdoc
->last
->parent
->tok
&&
1104 LIST_diag
== mdoc
->last
->parent
->norm
->Bl
.type
;
1107 * The `Nd' macro has all arguments in its body: it's a hybrid
1108 * of block partial-explicit and full-implicit. Stupid.
1111 if (MDOC_Nd
== tok
) {
1112 if ( ! mdoc_head_alloc(mdoc
, line
, ppos
, tok
))
1115 if ( ! rew_sub(MDOC_HEAD
, mdoc
, tok
, line
, ppos
))
1117 if ( ! mdoc_body_alloc(mdoc
, line
, ppos
, tok
))
1123 mdoc
->flags
|= MDOC_KEEP
;
1129 /* Initialise last-phrase-type with ARGS_PEND. */
1130 lac
= ARGS_ERROR
== ac
? ARGS_PEND
: ac
;
1131 ac
= mdoc_args(mdoc
, line
, pos
, buf
, tok
, &p
);
1133 if (ARGS_PUNCT
== ac
)
1136 if (ARGS_ERROR
== ac
)
1139 if (ARGS_EOLN
== ac
) {
1140 if (ARGS_PPHRASE
!= lac
&& ARGS_PHRASE
!= lac
)
1143 * This is necessary: if the last token on a
1144 * line is a `Ta' or tab, then we'll get
1145 * ARGS_EOLN, so we must be smart enough to
1146 * reopen our scope if the last parse was a
1147 * phrase or partial phrase.
1149 if ( ! rew_sub(MDOC_BODY
, mdoc
, tok
, line
, ppos
))
1151 if ( ! mdoc_body_alloc(mdoc
, line
, ppos
, tok
))
1158 * Emit leading punctuation (i.e., punctuation before
1159 * the MDOC_HEAD) for non-phrase types.
1164 ARGS_PHRASE
!= ac
&&
1165 ARGS_PPHRASE
!= ac
&&
1167 DELIM_OPEN
== mdoc_isdelim(p
)) {
1168 if ( ! dword(mdoc
, line
, la
, p
, DELIM_OPEN
, 0))
1173 /* Open a head if one hasn't been opened. */
1176 if ( ! mdoc_head_alloc(mdoc
, line
, ppos
, tok
))
1181 if (ARGS_PHRASE
== ac
||
1183 ARGS_PPHRASE
== ac
) {
1185 * If we haven't opened a body yet, rewind the
1186 * head; if we have, rewind that instead.
1189 mtt
= body
? MDOC_BODY
: MDOC_HEAD
;
1190 if ( ! rew_sub(mtt
, mdoc
, tok
, line
, ppos
))
1193 /* Then allocate our body context. */
1195 if ( ! mdoc_body_alloc(mdoc
, line
, ppos
, tok
))
1200 * Process phrases: set whether we're in a
1201 * partial-phrase (this effects line handling)
1202 * then call down into the phrase parser.
1205 if (ARGS_PPHRASE
== ac
)
1206 mdoc
->flags
|= MDOC_PPHRASE
;
1207 if (ARGS_PEND
== ac
&& ARGS_PPHRASE
== lac
)
1208 mdoc
->flags
|= MDOC_PPHRASE
;
1210 if ( ! phrase(mdoc
, line
, la
, buf
))
1213 mdoc
->flags
&= ~MDOC_PPHRASE
;
1217 ntok
= nparsed
|| ARGS_QWORD
== ac
?
1218 MDOC_MAX
: lookup(tok
, p
);
1220 if (MDOC_MAX
== ntok
) {
1221 if ( ! dword(mdoc
, line
, la
, p
, DELIM_MAX
,
1222 MDOC_JOIN
& mdoc_macros
[tok
].flags
))
1227 if ( ! mdoc_macro(mdoc
, ntok
, line
, la
, pos
, buf
))
1233 if ( ! mdoc_head_alloc(mdoc
, line
, ppos
, tok
))
1238 if (nl
&& ! append_delims(mdoc
, line
, pos
, buf
))
1241 /* If we've already opened our body, exit now. */
1247 * If there is an open (i.e., unvalidated) sub-block requiring
1248 * explicit close-out, postpone switching the current block from
1249 * head to body until the rew_sub() call closing out that
1252 for (n
= mdoc
->last
; n
&& n
!= head
; n
= n
->parent
) {
1253 if (MDOC_BLOCK
== n
->type
&&
1254 MDOC_EXPLICIT
& mdoc_macros
[n
->tok
].flags
&&
1255 ! (MDOC_VALID
& n
->flags
)) {
1261 /* Close out scopes to remain in a consistent state. */
1263 if ( ! rew_sub(MDOC_HEAD
, mdoc
, tok
, line
, ppos
))
1265 if ( ! mdoc_body_alloc(mdoc
, line
, ppos
, tok
))
1269 if ( ! (MDOC_FREECOL
& mdoc
->flags
))
1272 if ( ! rew_sub(MDOC_BODY
, mdoc
, tok
, line
, ppos
))
1274 if ( ! rew_sub(MDOC_BLOCK
, mdoc
, tok
, line
, ppos
))
1277 mdoc
->flags
&= ~MDOC_FREECOL
;
1282 blk_part_imp(MACRO_PROT_ARGS
)
1288 struct mdoc_node
*blk
; /* saved block context */
1289 struct mdoc_node
*body
; /* saved body context */
1290 struct mdoc_node
*n
;
1292 nl
= MDOC_NEWLINE
& mdoc
->flags
;
1295 * A macro that spans to the end of the line. This is generally
1296 * (but not necessarily) called as the first macro. The block
1297 * has a head as the immediate child, which is always empty,
1298 * followed by zero or more opening punctuation nodes, then the
1299 * body (which may be empty, depending on the macro), then zero
1300 * or more closing punctuation nodes.
1303 if ( ! mdoc_block_alloc(mdoc
, line
, ppos
, tok
, NULL
))
1308 if ( ! mdoc_head_alloc(mdoc
, line
, ppos
, tok
))
1310 if ( ! rew_sub(MDOC_HEAD
, mdoc
, tok
, line
, ppos
))
1314 * Open the body scope "on-demand", that is, after we've
1315 * processed all our the leading delimiters (open parenthesis,
1319 for (body
= NULL
; ; ) {
1321 ac
= mdoc_args(mdoc
, line
, pos
, buf
, tok
, &p
);
1323 if (ARGS_ERROR
== ac
)
1325 if (ARGS_EOLN
== ac
)
1327 if (ARGS_PUNCT
== ac
)
1330 if (NULL
== body
&& ARGS_QWORD
!= ac
&&
1331 DELIM_OPEN
== mdoc_isdelim(p
)) {
1332 if ( ! dword(mdoc
, line
, la
, p
, DELIM_OPEN
, 0))
1338 if ( ! mdoc_body_alloc(mdoc
, line
, ppos
, tok
))
1343 ntok
= ARGS_QWORD
== ac
? MDOC_MAX
: lookup(tok
, p
);
1345 if (MDOC_MAX
== ntok
) {
1346 if ( ! dword(mdoc
, line
, la
, p
, DELIM_MAX
,
1347 MDOC_JOIN
& mdoc_macros
[tok
].flags
))
1352 if ( ! mdoc_macro(mdoc
, ntok
, line
, la
, pos
, buf
))
1357 /* Clean-ups to leave in a consistent state. */
1360 if ( ! mdoc_body_alloc(mdoc
, line
, ppos
, tok
))
1366 * If there is an open sub-block requiring explicit close-out,
1367 * postpone closing out the current block
1368 * until the rew_sub() call closing out the sub-block.
1370 for (n
= mdoc
->last
; n
&& n
!= body
&& n
!= blk
->parent
;
1372 if (MDOC_BLOCK
== n
->type
&&
1373 MDOC_EXPLICIT
& mdoc_macros
[n
->tok
].flags
&&
1374 ! (MDOC_VALID
& n
->flags
)) {
1375 make_pending(n
, tok
, mdoc
, line
, ppos
);
1376 if ( ! mdoc_endbody_alloc(mdoc
, line
, ppos
,
1377 tok
, body
, ENDBODY_NOSPACE
))
1384 if ( ! rew_sub(MDOC_BODY
, mdoc
, tok
, line
, ppos
))
1387 /* Standard appending of delimiters. */
1389 if (nl
&& ! append_delims(mdoc
, line
, pos
, buf
))
1392 /* Rewind scope, if applicable. */
1394 if ( ! rew_sub(MDOC_BLOCK
, mdoc
, tok
, line
, ppos
))
1397 /* Move trailing .Ns out of scope. */
1399 for (n
= body
->child
; n
&& n
->next
; n
= n
->next
)
1401 if (n
&& MDOC_Ns
== n
->tok
)
1402 mdoc_node_relink(mdoc
, n
);
1408 blk_part_exp(MACRO_PROT_ARGS
)
1412 struct mdoc_node
*head
; /* keep track of head */
1413 struct mdoc_node
*body
; /* keep track of body */
1417 nl
= MDOC_NEWLINE
& mdoc
->flags
;
1420 * The opening of an explicit macro having zero or more leading
1421 * punctuation nodes; a head with optional single element (the
1422 * case of `Eo'); and a body that may be empty.
1425 if ( ! mdoc_block_alloc(mdoc
, line
, ppos
, tok
, NULL
))
1428 for (head
= body
= NULL
; ; ) {
1430 ac
= mdoc_args(mdoc
, line
, pos
, buf
, tok
, &p
);
1432 if (ARGS_ERROR
== ac
)
1434 if (ARGS_PUNCT
== ac
)
1436 if (ARGS_EOLN
== ac
)
1439 /* Flush out leading punctuation. */
1441 if (NULL
== head
&& ARGS_QWORD
!= ac
&&
1442 DELIM_OPEN
== mdoc_isdelim(p
)) {
1443 assert(NULL
== body
);
1444 if ( ! dword(mdoc
, line
, la
, p
, DELIM_OPEN
, 0))
1450 assert(NULL
== body
);
1451 if ( ! mdoc_head_alloc(mdoc
, line
, ppos
, tok
))
1457 * `Eo' gobbles any data into the head, but most other
1458 * macros just immediately close out and begin the body.
1463 /* No check whether it's a macro! */
1465 if ( ! dword(mdoc
, line
, la
, p
, DELIM_MAX
, 0))
1468 if ( ! rew_sub(MDOC_HEAD
, mdoc
, tok
, line
, ppos
))
1470 if ( ! mdoc_body_alloc(mdoc
, line
, ppos
, tok
))
1478 assert(NULL
!= head
&& NULL
!= body
);
1480 ntok
= ARGS_QWORD
== ac
? MDOC_MAX
: lookup(tok
, p
);
1482 if (MDOC_MAX
== ntok
) {
1483 if ( ! dword(mdoc
, line
, la
, p
, DELIM_MAX
,
1484 MDOC_JOIN
& mdoc_macros
[tok
].flags
))
1489 if ( ! mdoc_macro(mdoc
, ntok
, line
, la
, pos
, buf
))
1494 /* Clean-up to leave in a consistent state. */
1497 if ( ! mdoc_head_alloc(mdoc
, line
, ppos
, tok
))
1501 if ( ! rew_sub(MDOC_HEAD
, mdoc
, tok
, line
, ppos
))
1503 if ( ! mdoc_body_alloc(mdoc
, line
, ppos
, tok
))
1507 /* Standard appending of delimiters. */
1511 return(append_delims(mdoc
, line
, pos
, buf
));
1515 in_line_argn(MACRO_PROT_ARGS
)
1517 int la
, flushed
, j
, maxargs
, nl
;
1520 struct mdoc_arg
*arg
;
1524 nl
= MDOC_NEWLINE
& mdoc
->flags
;
1527 * A line macro that has a fixed number of arguments (maxargs).
1528 * Only open the scope once the first non-leading-punctuation is
1529 * found (unless MDOC_IGNDELIM is noted, like in `Pf'), then
1530 * keep it open until the maximum number of arguments are
1556 for (arg
= NULL
; ; ) {
1558 av
= mdoc_argv(mdoc
, line
, tok
, &arg
, pos
, buf
);
1560 if (ARGV_WORD
== av
) {
1565 if (ARGV_EOLN
== av
)
1570 mdoc_argv_free(arg
);
1574 for (flushed
= j
= 0; ; ) {
1576 ac
= mdoc_args(mdoc
, line
, pos
, buf
, tok
, &p
);
1578 if (ARGS_ERROR
== ac
)
1580 if (ARGS_PUNCT
== ac
)
1582 if (ARGS_EOLN
== ac
)
1585 if ( ! (MDOC_IGNDELIM
& mdoc_macros
[tok
].flags
) &&
1586 ARGS_QWORD
!= ac
&& 0 == j
&&
1587 DELIM_OPEN
== mdoc_isdelim(p
)) {
1588 if ( ! dword(mdoc
, line
, la
, p
, DELIM_OPEN
, 0))
1592 if ( ! mdoc_elem_alloc(mdoc
, line
, ppos
, tok
, arg
))
1595 if (j
== maxargs
&& ! flushed
) {
1596 if ( ! rew_elem(mdoc
, tok
))
1601 ntok
= ARGS_QWORD
== ac
? MDOC_MAX
: lookup(tok
, p
);
1603 if (MDOC_MAX
!= ntok
) {
1604 if ( ! flushed
&& ! rew_elem(mdoc
, tok
))
1607 if ( ! mdoc_macro(mdoc
, ntok
, line
, la
, pos
, buf
))
1613 if ( ! (MDOC_IGNDELIM
& mdoc_macros
[tok
].flags
) &&
1616 DELIM_NONE
!= mdoc_isdelim(p
)) {
1617 if ( ! rew_elem(mdoc
, tok
))
1622 if ( ! dword(mdoc
, line
, la
, p
, DELIM_MAX
,
1623 MDOC_JOIN
& mdoc_macros
[tok
].flags
))
1628 if (0 == j
&& ! mdoc_elem_alloc(mdoc
, line
, ppos
, tok
, arg
))
1631 /* Close out in a consistent state. */
1633 if ( ! flushed
&& ! rew_elem(mdoc
, tok
))
1637 return(append_delims(mdoc
, line
, pos
, buf
));
1641 in_line_eoln(MACRO_PROT_ARGS
)
1646 struct mdoc_arg
*arg
;
1650 assert( ! (MDOC_PARSED
& mdoc_macros
[tok
].flags
));
1653 rew_sub(MDOC_BLOCK
, mdoc
, MDOC_Nm
, line
, ppos
);
1655 /* Parse macro arguments. */
1657 for (arg
= NULL
; ; ) {
1659 av
= mdoc_argv(mdoc
, line
, tok
, &arg
, pos
, buf
);
1661 if (ARGV_WORD
== av
) {
1665 if (ARGV_EOLN
== av
)
1670 mdoc_argv_free(arg
);
1674 /* Open element scope. */
1676 if ( ! mdoc_elem_alloc(mdoc
, line
, ppos
, tok
, arg
))
1679 /* Parse argument terms. */
1683 ac
= mdoc_args(mdoc
, line
, pos
, buf
, tok
, &p
);
1685 if (ARGS_ERROR
== ac
)
1687 if (ARGS_EOLN
== ac
)
1690 ntok
= ARGS_QWORD
== ac
? MDOC_MAX
: lookup(tok
, p
);
1692 if (MDOC_MAX
== ntok
) {
1693 if ( ! dword(mdoc
, line
, la
, p
, DELIM_MAX
,
1694 MDOC_JOIN
& mdoc_macros
[tok
].flags
))
1699 if ( ! rew_elem(mdoc
, tok
))
1701 return(mdoc_macro(mdoc
, ntok
, line
, la
, pos
, buf
));
1704 /* Close out (no delimiters). */
1706 return(rew_elem(mdoc
, tok
));
1710 ctx_synopsis(MACRO_PROT_ARGS
)
1714 nl
= MDOC_NEWLINE
& mdoc
->flags
;
1716 /* If we're not in the SYNOPSIS, go straight to in-line. */
1717 if ( ! (MDOC_SYNOPSIS
& mdoc
->flags
))
1718 return(in_line(mdoc
, tok
, line
, ppos
, pos
, buf
));
1720 /* If we're a nested call, same place. */
1722 return(in_line(mdoc
, tok
, line
, ppos
, pos
, buf
));
1725 * XXX: this will open a block scope; however, if later we end
1726 * up formatting the block scope, then child nodes will inherit
1727 * the formatting. Be careful.
1730 return(blk_full(mdoc
, tok
, line
, ppos
, pos
, buf
));
1731 assert(MDOC_Vt
== tok
);
1732 return(blk_part_imp(mdoc
, tok
, line
, ppos
, pos
, buf
));
1736 * Phrases occur within `Bl -column' entries, separated by `Ta' or tabs.
1737 * They're unusual because they're basically free-form text until a
1738 * macro is encountered.
1741 phrase(struct mdoc
*mdoc
, int line
, int ppos
, char *buf
)
1748 for (pos
= ppos
; ; ) {
1751 ac
= mdoc_zargs(mdoc
, line
, &pos
, buf
, &p
);
1753 if (ARGS_ERROR
== ac
)
1755 if (ARGS_EOLN
== ac
)
1758 ntok
= ARGS_QWORD
== ac
? MDOC_MAX
: lookup_raw(p
);
1760 if (MDOC_MAX
== ntok
) {
1761 if ( ! dword(mdoc
, line
, la
, p
, DELIM_MAX
, 1))
1766 if ( ! mdoc_macro(mdoc
, ntok
, line
, la
, &pos
, buf
))
1768 return(append_delims(mdoc
, line
, &pos
, buf
));
1775 phrase_ta(MACRO_PROT_ARGS
)
1777 struct mdoc_node
*n
;
1783 /* Make sure we are in a column list or ignore this macro. */
1785 while (NULL
!= n
&& MDOC_Bl
!= n
->tok
)
1787 if (NULL
== n
|| LIST_column
!= n
->norm
->Bl
.type
) {
1788 mandoc_msg(MANDOCERR_TA_STRAY
, mdoc
->parse
,
1793 /* Advance to the next column. */
1794 if ( ! rew_sub(MDOC_BODY
, mdoc
, MDOC_It
, line
, ppos
))
1796 if ( ! mdoc_body_alloc(mdoc
, line
, ppos
, MDOC_It
))
1801 ac
= mdoc_zargs(mdoc
, line
, pos
, buf
, &p
);
1803 if (ARGS_ERROR
== ac
)
1805 if (ARGS_EOLN
== ac
)
1808 ntok
= ARGS_QWORD
== ac
? MDOC_MAX
: lookup_raw(p
);
1810 if (MDOC_MAX
== ntok
) {
1811 if ( ! dword(mdoc
, line
, la
, p
, DELIM_MAX
,
1812 MDOC_JOIN
& mdoc_macros
[tok
].flags
))
1817 if ( ! mdoc_macro(mdoc
, ntok
, line
, la
, pos
, buf
))
1819 return(append_delims(mdoc
, line
, pos
, buf
));