]> git.cameronkatri.com Git - mandoc.git/blob - mdoc.c
Make SYNOPSIS `Nm' use a TABLE in -T[x]html mode. Also fix `Nd' using
[mandoc.git] / mdoc.c
1 /* $Id: mdoc.c,v 1.170 2010/12/16 17:14:48 kristaps Exp $ */
2 /*
3 * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
4 * Copyright (c) 2010 Ingo Schwarze <schwarze@openbsd.org>
5 *
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.
9 *
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.
17 */
18 #ifdef HAVE_CONFIG_H
19 #include "config.h"
20 #endif
21
22 #include <sys/types.h>
23
24 #include <assert.h>
25 #include <stdarg.h>
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <string.h>
29 #include <time.h>
30
31 #include "mandoc.h"
32 #include "libmdoc.h"
33 #include "libmandoc.h"
34
35 const char *const __mdoc_macronames[MDOC_MAX] = {
36 "Ap", "Dd", "Dt", "Os",
37 "Sh", "Ss", "Pp", "D1",
38 "Dl", "Bd", "Ed", "Bl",
39 "El", "It", "Ad", "An",
40 "Ar", "Cd", "Cm", "Dv",
41 "Er", "Ev", "Ex", "Fa",
42 "Fd", "Fl", "Fn", "Ft",
43 "Ic", "In", "Li", "Nd",
44 "Nm", "Op", "Ot", "Pa",
45 "Rv", "St", "Va", "Vt",
46 /* LINTED */
47 "Xr", "%A", "%B", "%D",
48 /* LINTED */
49 "%I", "%J", "%N", "%O",
50 /* LINTED */
51 "%P", "%R", "%T", "%V",
52 "Ac", "Ao", "Aq", "At",
53 "Bc", "Bf", "Bo", "Bq",
54 "Bsx", "Bx", "Db", "Dc",
55 "Do", "Dq", "Ec", "Ef",
56 "Em", "Eo", "Fx", "Ms",
57 "No", "Ns", "Nx", "Ox",
58 "Pc", "Pf", "Po", "Pq",
59 "Qc", "Ql", "Qo", "Qq",
60 "Re", "Rs", "Sc", "So",
61 "Sq", "Sm", "Sx", "Sy",
62 "Tn", "Ux", "Xc", "Xo",
63 "Fo", "Fc", "Oo", "Oc",
64 "Bk", "Ek", "Bt", "Hf",
65 "Fr", "Ud", "Lb", "Lp",
66 "Lk", "Mt", "Brq", "Bro",
67 /* LINTED */
68 "Brc", "%C", "Es", "En",
69 /* LINTED */
70 "Dx", "%Q", "br", "sp",
71 /* LINTED */
72 "%U", "Ta"
73 };
74
75 const char *const __mdoc_argnames[MDOC_ARG_MAX] = {
76 "split", "nosplit", "ragged",
77 "unfilled", "literal", "file",
78 "offset", "bullet", "dash",
79 "hyphen", "item", "enum",
80 "tag", "diag", "hang",
81 "ohang", "inset", "column",
82 "width", "compact", "std",
83 "filled", "words", "emphasis",
84 "symbolic", "nested", "centered"
85 };
86
87 const char * const *mdoc_macronames = __mdoc_macronames;
88 const char * const *mdoc_argnames = __mdoc_argnames;
89
90 static void mdoc_node_free(struct mdoc_node *);
91 static void mdoc_node_unlink(struct mdoc *,
92 struct mdoc_node *);
93 static void mdoc_free1(struct mdoc *);
94 static void mdoc_alloc1(struct mdoc *);
95 static struct mdoc_node *node_alloc(struct mdoc *, int, int,
96 enum mdoct, enum mdoc_type);
97 static int node_append(struct mdoc *,
98 struct mdoc_node *);
99 static int mdoc_ptext(struct mdoc *, int, char *, int);
100 static int mdoc_pmacro(struct mdoc *, int, char *, int);
101
102
103 const struct mdoc_node *
104 mdoc_node(const struct mdoc *m)
105 {
106
107 return(MDOC_HALT & m->flags ? NULL : m->first);
108 }
109
110
111 const struct mdoc_meta *
112 mdoc_meta(const struct mdoc *m)
113 {
114
115 return(MDOC_HALT & m->flags ? NULL : &m->meta);
116 }
117
118
119 /*
120 * Frees volatile resources (parse tree, meta-data, fields).
121 */
122 static void
123 mdoc_free1(struct mdoc *mdoc)
124 {
125
126 if (mdoc->first)
127 mdoc_node_delete(mdoc, mdoc->first);
128 if (mdoc->meta.title)
129 free(mdoc->meta.title);
130 if (mdoc->meta.os)
131 free(mdoc->meta.os);
132 if (mdoc->meta.name)
133 free(mdoc->meta.name);
134 if (mdoc->meta.arch)
135 free(mdoc->meta.arch);
136 if (mdoc->meta.vol)
137 free(mdoc->meta.vol);
138 if (mdoc->meta.msec)
139 free(mdoc->meta.msec);
140 }
141
142
143 /*
144 * Allocate all volatile resources (parse tree, meta-data, fields).
145 */
146 static void
147 mdoc_alloc1(struct mdoc *mdoc)
148 {
149
150 memset(&mdoc->meta, 0, sizeof(struct mdoc_meta));
151 mdoc->flags = 0;
152 mdoc->lastnamed = mdoc->lastsec = SEC_NONE;
153 mdoc->last = mandoc_calloc(1, sizeof(struct mdoc_node));
154 mdoc->first = mdoc->last;
155 mdoc->last->type = MDOC_ROOT;
156 mdoc->next = MDOC_NEXT_CHILD;
157 }
158
159
160 /*
161 * Free up volatile resources (see mdoc_free1()) then re-initialises the
162 * data with mdoc_alloc1(). After invocation, parse data has been reset
163 * and the parser is ready for re-invocation on a new tree; however,
164 * cross-parse non-volatile data is kept intact.
165 */
166 void
167 mdoc_reset(struct mdoc *mdoc)
168 {
169
170 mdoc_free1(mdoc);
171 mdoc_alloc1(mdoc);
172 }
173
174
175 /*
176 * Completely free up all volatile and non-volatile parse resources.
177 * After invocation, the pointer is no longer usable.
178 */
179 void
180 mdoc_free(struct mdoc *mdoc)
181 {
182
183 mdoc_free1(mdoc);
184 free(mdoc);
185 }
186
187
188 /*
189 * Allocate volatile and non-volatile parse resources.
190 */
191 struct mdoc *
192 mdoc_alloc(struct regset *regs, void *data, mandocmsg msg)
193 {
194 struct mdoc *p;
195
196 p = mandoc_calloc(1, sizeof(struct mdoc));
197
198 p->msg = msg;
199 p->data = data;
200 p->regs = regs;
201
202 mdoc_hash_init();
203 mdoc_alloc1(p);
204 return(p);
205 }
206
207
208 /*
209 * Climb back up the parse tree, validating open scopes. Mostly calls
210 * through to macro_end() in macro.c.
211 */
212 int
213 mdoc_endparse(struct mdoc *m)
214 {
215
216 if (MDOC_HALT & m->flags)
217 return(0);
218 else if (mdoc_macroend(m))
219 return(1);
220 m->flags |= MDOC_HALT;
221 return(0);
222 }
223
224
225 /*
226 * Main parse routine. Parses a single line -- really just hands off to
227 * the macro (mdoc_pmacro()) or text parser (mdoc_ptext()).
228 */
229 int
230 mdoc_parseln(struct mdoc *m, int ln, char *buf, int offs)
231 {
232
233 if (MDOC_HALT & m->flags)
234 return(0);
235
236 m->flags |= MDOC_NEWLINE;
237
238 /*
239 * Let the roff nS register switch SYNOPSIS mode early,
240 * such that the parser knows at all times
241 * whether this mode is on or off.
242 * Note that this mode is also switched by the Sh macro.
243 */
244 if (m->regs->regs[(int)REG_nS].set) {
245 if (m->regs->regs[(int)REG_nS].v.u)
246 m->flags |= MDOC_SYNOPSIS;
247 else
248 m->flags &= ~MDOC_SYNOPSIS;
249 }
250
251 return(('.' == buf[offs] || '\'' == buf[offs]) ?
252 mdoc_pmacro(m, ln, buf, offs) :
253 mdoc_ptext(m, ln, buf, offs));
254 }
255
256
257 int
258 mdoc_vmsg(struct mdoc *mdoc, enum mandocerr t,
259 int ln, int pos, const char *fmt, ...)
260 {
261 char buf[256];
262 va_list ap;
263
264 va_start(ap, fmt);
265 vsnprintf(buf, sizeof(buf) - 1, fmt, ap);
266 va_end(ap);
267
268 return((*mdoc->msg)(t, mdoc->data, ln, pos, buf));
269 }
270
271
272 int
273 mdoc_macro(MACRO_PROT_ARGS)
274 {
275 assert(tok < MDOC_MAX);
276
277 /* If we're in the body, deny prologue calls. */
278
279 if (MDOC_PROLOGUE & mdoc_macros[tok].flags &&
280 MDOC_PBODY & m->flags)
281 return(mdoc_pmsg(m, line, ppos, MANDOCERR_BADBODY));
282
283 /* If we're in the prologue, deny "body" macros. */
284
285 if ( ! (MDOC_PROLOGUE & mdoc_macros[tok].flags) &&
286 ! (MDOC_PBODY & m->flags)) {
287 if ( ! mdoc_pmsg(m, line, ppos, MANDOCERR_BADPROLOG))
288 return(0);
289 if (NULL == m->meta.msec)
290 m->meta.msec = mandoc_strdup("1");
291 if (NULL == m->meta.title)
292 m->meta.title = mandoc_strdup("UNKNOWN");
293 if (NULL == m->meta.vol)
294 m->meta.vol = mandoc_strdup("LOCAL");
295 if (NULL == m->meta.os)
296 m->meta.os = mandoc_strdup("LOCAL");
297 if (0 == m->meta.date)
298 m->meta.date = time(NULL);
299 m->flags |= MDOC_PBODY;
300 }
301
302 return((*mdoc_macros[tok].fp)(m, tok, line, ppos, pos, buf));
303 }
304
305
306 static int
307 node_append(struct mdoc *mdoc, struct mdoc_node *p)
308 {
309
310 assert(mdoc->last);
311 assert(mdoc->first);
312 assert(MDOC_ROOT != p->type);
313
314 switch (mdoc->next) {
315 case (MDOC_NEXT_SIBLING):
316 mdoc->last->next = p;
317 p->prev = mdoc->last;
318 p->parent = mdoc->last->parent;
319 break;
320 case (MDOC_NEXT_CHILD):
321 mdoc->last->child = p;
322 p->parent = mdoc->last;
323 break;
324 default:
325 abort();
326 /* NOTREACHED */
327 }
328
329 p->parent->nchild++;
330
331 if ( ! mdoc_valid_pre(mdoc, p))
332 return(0);
333
334 switch (p->type) {
335 case (MDOC_HEAD):
336 assert(MDOC_BLOCK == p->parent->type);
337 p->parent->head = p;
338 break;
339 case (MDOC_TAIL):
340 assert(MDOC_BLOCK == p->parent->type);
341 p->parent->tail = p;
342 break;
343 case (MDOC_BODY):
344 if (p->end)
345 break;
346 assert(MDOC_BLOCK == p->parent->type);
347 p->parent->body = p;
348 break;
349 default:
350 break;
351 }
352
353 mdoc->last = p;
354
355 switch (p->type) {
356 case (MDOC_TEXT):
357 if ( ! mdoc_valid_post(mdoc))
358 return(0);
359 break;
360 default:
361 break;
362 }
363
364 return(1);
365 }
366
367
368 static struct mdoc_node *
369 node_alloc(struct mdoc *m, int line, int pos,
370 enum mdoct tok, enum mdoc_type type)
371 {
372 struct mdoc_node *p;
373
374 p = mandoc_calloc(1, sizeof(struct mdoc_node));
375 p->sec = m->lastsec;
376 p->line = line;
377 p->pos = pos;
378 p->tok = tok;
379 p->type = type;
380
381 /* Flag analysis. */
382
383 if (MDOC_SYNOPSIS & m->flags)
384 p->flags |= MDOC_SYNPRETTY;
385 else
386 p->flags &= ~MDOC_SYNPRETTY;
387 if (MDOC_NEWLINE & m->flags)
388 p->flags |= MDOC_LINE;
389 m->flags &= ~MDOC_NEWLINE;
390
391 return(p);
392 }
393
394
395 int
396 mdoc_tail_alloc(struct mdoc *m, int line, int pos, enum mdoct tok)
397 {
398 struct mdoc_node *p;
399
400 p = node_alloc(m, line, pos, tok, MDOC_TAIL);
401 if ( ! node_append(m, p))
402 return(0);
403 m->next = MDOC_NEXT_CHILD;
404 return(1);
405 }
406
407
408 int
409 mdoc_head_alloc(struct mdoc *m, int line, int pos, enum mdoct tok)
410 {
411 struct mdoc_node *p;
412
413 assert(m->first);
414 assert(m->last);
415
416 p = node_alloc(m, line, pos, tok, MDOC_HEAD);
417 if ( ! node_append(m, p))
418 return(0);
419 m->next = MDOC_NEXT_CHILD;
420 return(1);
421 }
422
423
424 int
425 mdoc_body_alloc(struct mdoc *m, int line, int pos, enum mdoct tok)
426 {
427 struct mdoc_node *p;
428
429 p = node_alloc(m, line, pos, tok, MDOC_BODY);
430 if ( ! node_append(m, p))
431 return(0);
432 m->next = MDOC_NEXT_CHILD;
433 return(1);
434 }
435
436
437 int
438 mdoc_endbody_alloc(struct mdoc *m, int line, int pos, enum mdoct tok,
439 struct mdoc_node *body, enum mdoc_endbody end)
440 {
441 struct mdoc_node *p;
442
443 p = node_alloc(m, line, pos, tok, MDOC_BODY);
444 p->pending = body;
445 p->end = end;
446 if ( ! node_append(m, p))
447 return(0);
448 m->next = MDOC_NEXT_SIBLING;
449 return(1);
450 }
451
452
453 int
454 mdoc_block_alloc(struct mdoc *m, int line, int pos,
455 enum mdoct tok, struct mdoc_arg *args)
456 {
457 struct mdoc_node *p;
458
459 p = node_alloc(m, line, pos, tok, MDOC_BLOCK);
460 p->args = args;
461 if (p->args)
462 (args->refcnt)++;
463 if ( ! node_append(m, p))
464 return(0);
465 m->next = MDOC_NEXT_CHILD;
466 return(1);
467 }
468
469
470 int
471 mdoc_elem_alloc(struct mdoc *m, int line, int pos,
472 enum mdoct tok, struct mdoc_arg *args)
473 {
474 struct mdoc_node *p;
475
476 p = node_alloc(m, line, pos, tok, MDOC_ELEM);
477 p->args = args;
478 if (p->args)
479 (args->refcnt)++;
480 if ( ! node_append(m, p))
481 return(0);
482 m->next = MDOC_NEXT_CHILD;
483 return(1);
484 }
485
486
487 int
488 mdoc_word_alloc(struct mdoc *m, int line, int pos, const char *p)
489 {
490 struct mdoc_node *n;
491 size_t sv, len;
492
493 len = strlen(p);
494
495 n = node_alloc(m, line, pos, MDOC_MAX, MDOC_TEXT);
496 n->string = mandoc_malloc(len + 1);
497 sv = strlcpy(n->string, p, len + 1);
498
499 /* Prohibit truncation. */
500 assert(sv < len + 1);
501
502 if ( ! node_append(m, n))
503 return(0);
504
505 m->next = MDOC_NEXT_SIBLING;
506 return(1);
507 }
508
509
510 static void
511 mdoc_node_free(struct mdoc_node *p)
512 {
513
514 /*
515 * XXX: if these end up being problematic in terms of memory
516 * management and dereferencing freed blocks, then make them
517 * into reference-counted double-pointers.
518 */
519
520 if (MDOC_Bd == p->tok && MDOC_BLOCK == p->type)
521 if (p->data.Bd)
522 free(p->data.Bd);
523 if (MDOC_Bl == p->tok && MDOC_BLOCK == p->type)
524 if (p->data.Bl)
525 free(p->data.Bl);
526 if (MDOC_Bf == p->tok && MDOC_HEAD == p->type)
527 if (p->data.Bf)
528 free(p->data.Bf);
529 if (MDOC_An == p->tok)
530 if (p->data.An)
531 free(p->data.An);
532
533 if (p->string)
534 free(p->string);
535 if (p->args)
536 mdoc_argv_free(p->args);
537 free(p);
538 }
539
540
541 static void
542 mdoc_node_unlink(struct mdoc *m, struct mdoc_node *n)
543 {
544
545 /* Adjust siblings. */
546
547 if (n->prev)
548 n->prev->next = n->next;
549 if (n->next)
550 n->next->prev = n->prev;
551
552 /* Adjust parent. */
553
554 if (n->parent) {
555 n->parent->nchild--;
556 if (n->parent->child == n)
557 n->parent->child = n->prev ? n->prev : n->next;
558 if (n->parent->last == n)
559 n->parent->last = n->prev ? n->prev : NULL;
560 }
561
562 /* Adjust parse point, if applicable. */
563
564 if (m && m->last == n) {
565 if (n->prev) {
566 m->last = n->prev;
567 m->next = MDOC_NEXT_SIBLING;
568 } else {
569 m->last = n->parent;
570 m->next = MDOC_NEXT_CHILD;
571 }
572 }
573
574 if (m && m->first == n)
575 m->first = NULL;
576 }
577
578
579 void
580 mdoc_node_delete(struct mdoc *m, struct mdoc_node *p)
581 {
582
583 while (p->child) {
584 assert(p->nchild);
585 mdoc_node_delete(m, p->child);
586 }
587 assert(0 == p->nchild);
588
589 mdoc_node_unlink(m, p);
590 mdoc_node_free(p);
591 }
592
593
594 /*
595 * Parse free-form text, that is, a line that does not begin with the
596 * control character.
597 */
598 static int
599 mdoc_ptext(struct mdoc *m, int line, char *buf, int offs)
600 {
601 char *c, *ws, *end;
602 struct mdoc_node *n;
603
604 /* Ignore bogus comments. */
605
606 if ('\\' == buf[offs] &&
607 '.' == buf[offs + 1] &&
608 '"' == buf[offs + 2])
609 return(mdoc_pmsg(m, line, offs, MANDOCERR_BADCOMMENT));
610
611 /* No text before an initial macro. */
612
613 if (SEC_NONE == m->lastnamed)
614 return(mdoc_pmsg(m, line, offs, MANDOCERR_NOTEXT));
615
616 assert(m->last);
617 n = m->last;
618
619 /*
620 * Divert directly to list processing if we're encountering a
621 * columnar MDOC_BLOCK with or without a prior MDOC_BLOCK entry
622 * (a MDOC_BODY means it's already open, in which case we should
623 * process within its context in the normal way).
624 */
625
626 if (MDOC_Bl == n->tok && MDOC_BODY == n->type &&
627 LIST_column == n->data.Bl->type) {
628 /* `Bl' is open without any children. */
629 m->flags |= MDOC_FREECOL;
630 return(mdoc_macro(m, MDOC_It, line, offs, &offs, buf));
631 }
632
633 if (MDOC_It == n->tok && MDOC_BLOCK == n->type &&
634 NULL != n->parent &&
635 MDOC_Bl == n->parent->tok &&
636 LIST_column == n->parent->data.Bl->type) {
637 /* `Bl' has block-level `It' children. */
638 m->flags |= MDOC_FREECOL;
639 return(mdoc_macro(m, MDOC_It, line, offs, &offs, buf));
640 }
641
642 /*
643 * Search for the beginning of unescaped trailing whitespace (ws)
644 * and for the first character not to be output (end).
645 */
646
647 /* FIXME: replace with strcspn(). */
648 ws = NULL;
649 for (c = end = buf + offs; *c; c++) {
650 switch (*c) {
651 case '-':
652 if (mandoc_hyph(buf + offs, c))
653 *c = ASCII_HYPH;
654 ws = NULL;
655 break;
656 case ' ':
657 if (NULL == ws)
658 ws = c;
659 continue;
660 case '\t':
661 /*
662 * Always warn about trailing tabs,
663 * even outside literal context,
664 * where they should be put on the next line.
665 */
666 if (NULL == ws)
667 ws = c;
668 /*
669 * Strip trailing tabs in literal context only;
670 * outside, they affect the next line.
671 */
672 if (MDOC_LITERAL & m->flags)
673 continue;
674 break;
675 case '\\':
676 /* Skip the escaped character, too, if any. */
677 if (c[1])
678 c++;
679 /* FALLTHROUGH */
680 default:
681 ws = NULL;
682 break;
683 }
684 end = c + 1;
685 }
686 *end = '\0';
687
688 if (ws)
689 if ( ! mdoc_pmsg(m, line, (int)(ws-buf), MANDOCERR_EOLNSPACE))
690 return(0);
691
692 if ('\0' == buf[offs] && ! (MDOC_LITERAL & m->flags)) {
693 if ( ! mdoc_pmsg(m, line, (int)(c-buf), MANDOCERR_NOBLANKLN))
694 return(0);
695
696 /*
697 * Insert a `sp' in the case of a blank line. Technically,
698 * blank lines aren't allowed, but enough manuals assume this
699 * behaviour that we want to work around it.
700 */
701 if ( ! mdoc_elem_alloc(m, line, offs, MDOC_sp, NULL))
702 return(0);
703
704 m->next = MDOC_NEXT_SIBLING;
705 return(1);
706 }
707
708 if ( ! mdoc_word_alloc(m, line, offs, buf+offs))
709 return(0);
710
711 if (MDOC_LITERAL & m->flags)
712 return(1);
713
714 /*
715 * End-of-sentence check. If the last character is an unescaped
716 * EOS character, then flag the node as being the end of a
717 * sentence. The front-end will know how to interpret this.
718 */
719
720 assert(buf < end);
721
722 if (mandoc_eos(buf+offs, (size_t)(end-buf-offs), 0))
723 m->last->flags |= MDOC_EOS;
724
725 return(1);
726 }
727
728
729 /*
730 * Parse a macro line, that is, a line beginning with the control
731 * character.
732 */
733 static int
734 mdoc_pmacro(struct mdoc *m, int ln, char *buf, int offs)
735 {
736 enum mdoct tok;
737 int i, j, sv;
738 char mac[5];
739 struct mdoc_node *n;
740
741 /* Empty lines are ignored. */
742
743 offs++;
744
745 if ('\0' == buf[offs])
746 return(1);
747
748 i = offs;
749
750 /* Accept tabs/whitespace after the initial control char. */
751
752 if (' ' == buf[i] || '\t' == buf[i]) {
753 i++;
754 while (buf[i] && (' ' == buf[i] || '\t' == buf[i]))
755 i++;
756 if ('\0' == buf[i])
757 return(1);
758 }
759
760 sv = i;
761
762 /*
763 * Copy the first word into a nil-terminated buffer.
764 * Stop copying when a tab, space, or eoln is encountered.
765 */
766
767 j = 0;
768 while (j < 4 && '\0' != buf[i] && ' ' != buf[i] && '\t' != buf[i])
769 mac[j++] = buf[i++];
770 mac[j] = '\0';
771
772 tok = (j > 1 || j < 4) ? mdoc_hash_find(mac) : MDOC_MAX;
773 if (MDOC_MAX == tok) {
774 mdoc_vmsg(m, MANDOCERR_MACRO, ln, sv, "%s", buf + sv - 1);
775 return(1);
776 }
777
778 /* Disregard the first trailing tab, if applicable. */
779
780 if ('\t' == buf[i])
781 i++;
782
783 /* Jump to the next non-whitespace word. */
784
785 while (buf[i] && ' ' == buf[i])
786 i++;
787
788 /*
789 * Trailing whitespace. Note that tabs are allowed to be passed
790 * into the parser as "text", so we only warn about spaces here.
791 */
792
793 if ('\0' == buf[i] && ' ' == buf[i - 1])
794 if ( ! mdoc_pmsg(m, ln, i - 1, MANDOCERR_EOLNSPACE))
795 goto err;
796
797 /*
798 * If an initial macro or a list invocation, divert directly
799 * into macro processing.
800 */
801
802 if (NULL == m->last || MDOC_It == tok || MDOC_El == tok) {
803 if ( ! mdoc_macro(m, tok, ln, sv, &i, buf))
804 goto err;
805 return(1);
806 }
807
808 n = m->last;
809 assert(m->last);
810
811 /*
812 * If the first macro of a `Bl -column', open an `It' block
813 * context around the parsed macro.
814 */
815
816 if (MDOC_Bl == n->tok && MDOC_BODY == n->type &&
817 LIST_column == n->data.Bl->type) {
818 m->flags |= MDOC_FREECOL;
819 if ( ! mdoc_macro(m, MDOC_It, ln, sv, &sv, buf))
820 goto err;
821 return(1);
822 }
823
824 /*
825 * If we're following a block-level `It' within a `Bl -column'
826 * context (perhaps opened in the above block or in ptext()),
827 * then open an `It' block context around the parsed macro.
828 */
829
830 if (MDOC_It == n->tok && MDOC_BLOCK == n->type &&
831 NULL != n->parent &&
832 MDOC_Bl == n->parent->tok &&
833 LIST_column == n->parent->data.Bl->type) {
834 m->flags |= MDOC_FREECOL;
835 if ( ! mdoc_macro(m, MDOC_It, ln, sv, &sv, buf))
836 goto err;
837 return(1);
838 }
839
840 /* Normal processing of a macro. */
841
842 if ( ! mdoc_macro(m, tok, ln, sv, &i, buf))
843 goto err;
844
845 return(1);
846
847 err: /* Error out. */
848
849 m->flags |= MDOC_HALT;
850 return(0);
851 }
852
853