diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-03-27 13:44:24 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-03-27 13:44:24 +0000 |
commit | 948477c0386fca9956999bb560a26efd8f203b92 (patch) | |
tree | e643b17e22cef85b18744388b3647c7bf1dedf1a /mdoc_macro.c | |
parent | 0e2222b5e44166e938751bd305066bdb088ba177 (diff) | |
download | mandoc-948477c0386fca9956999bb560a26efd8f203b92.tar.gz |
Fixes in going over all OpenBSD manuals.
Diffstat (limited to 'mdoc_macro.c')
-rw-r--r-- | mdoc_macro.c | 32 |
1 files changed, 22 insertions, 10 deletions
diff --git a/mdoc_macro.c b/mdoc_macro.c index 6693b132..be1a9d1b 100644 --- a/mdoc_macro.c +++ b/mdoc_macro.c @@ -800,7 +800,7 @@ blk_exp_close(MACRO_PROT_ARGS) static int in_line(MACRO_PROT_ARGS) { - int la, lastpunct, c, w; + int la, lastpunct, c, w, cnt, d, call; struct mdoc_arg *arg; char *p; @@ -812,7 +812,6 @@ in_line(MACRO_PROT_ARGS) *pos = la; break; } - if (ARGV_EOLN == c) break; if (ARGV_ARG == c) @@ -822,11 +821,7 @@ in_line(MACRO_PROT_ARGS) return(0); } - if ( ! mdoc_elem_alloc(mdoc, line, ppos, tok, arg)) - return(0); - mdoc->next = MDOC_NEXT_CHILD; - - for (lastpunct = 0;; ) { + for (call = cnt = 0, lastpunct = 1;; ) { la = *pos; w = mdoc_args(mdoc, line, pos, buf, tok, &p); @@ -847,6 +842,14 @@ in_line(MACRO_PROT_ARGS) if (MDOC_MAX != c && -1 != c) { if (0 == lastpunct && ! rew_elem(mdoc, tok)) return(0); + if (0 == cnt) { + if ( ! mdoc_elem_alloc(mdoc, line, ppos, + tok, arg)) + return(0); + if ( ! rew_elem(mdoc, tok)) + return(0); + mdoc->next = MDOC_NEXT_SIBLING; + } c = mdoc_macro(mdoc, c, line, la, pos, buf); if (0 == c) return(0); @@ -858,20 +861,22 @@ in_line(MACRO_PROT_ARGS) /* Non-quote-enclosed punctuation. */ - if (ARGS_QWORD != w && mdoc_isdelim(p)) { + d = mdoc_isdelim(p); + + if (ARGS_QWORD != w && d) { if (0 == lastpunct && ! rew_elem(mdoc, tok)) return(0); lastpunct = 1; } else if (lastpunct) { c = mdoc_elem_alloc(mdoc, line, ppos, tok, arg); - if (0 == c) return(0); - mdoc->next = MDOC_NEXT_CHILD; lastpunct = 0; } + if ( ! d) + cnt++; if ( ! mdoc_word_alloc(mdoc, line, la, p)) return(0); mdoc->next = MDOC_NEXT_SIBLING; @@ -879,6 +884,13 @@ in_line(MACRO_PROT_ARGS) if (0 == lastpunct && ! rew_elem(mdoc, tok)) return(0); + if (0 == cnt) { + c = mdoc_elem_alloc(mdoc, line, ppos, tok, arg); + if (0 == c) + return(0); + if ( ! rew_elem(mdoc, tok)) + return(0); + } if (ppos > 1) return(1); return(append_delims(mdoc, line, pos, buf)); |