diff options
-rw-r--r-- | index.sgml | 11 | ||||
-rw-r--r-- | libmdoc.h | 3 | ||||
-rw-r--r-- | mdoc_argv.c | 4 | ||||
-rw-r--r-- | mdoc_macro.c | 11 |
4 files changed, 19 insertions, 10 deletions
@@ -219,6 +219,16 @@ <COL CLASS="date"> <TBODY> <TR> + <TD VALIGN="top"><SPAN CLASS="date">xx-05-2010</SPAN></TD> + <TD VALIGN="top"> + Clean-up in internal <SPAN CLASS="flag">-mdoc</SPAN> library. Rolled back + break-at-hyphen (broken). <SPAN CLASS="flag">-DUGLY</SPAN> is now the default + (why not). + Version: <SPAN CLASS="rev">1.9.24</SPAN>. + </TD> + </TR> + + <TR> <TD VALIGN="top"><SPAN CLASS="date">07-04-2010</SPAN></TD> <TD VALIGN="top"> <SPAN CLASS="nm">mdocml</SPAN> has been linked to the <A CLASS="external" @@ -232,7 +242,6 @@ layout. Version: <SPAN CLASS="rev">1.9.23</SPAN>. </TD> </TR> - <TR> <TD VALIGN="top"><SPAN CLASS="date">31-03-2010</SPAN></TD> <TD VALIGN="top"> @@ -117,7 +117,8 @@ enum margserr { ARGS_WORD, ARGS_PUNCT, ARGS_QWORD, - ARGS_PHRASE + ARGS_PHRASE, + ARGS_PPHRASE }; enum margverr { diff --git a/mdoc_argv.c b/mdoc_argv.c index 08de1bf0..0ab8d9d6 100644 --- a/mdoc_argv.c +++ b/mdoc_argv.c @@ -378,6 +378,7 @@ args(struct mdoc *m, int line, int *pos, { int i; char *p, *pp; + enum margserr rc; /* * Parse out the terms (like `val' in `.Xx -arg val' or simply @@ -440,6 +441,7 @@ args(struct mdoc *m, int line, int *pos, */ if (ARGS_TABSEP & fl) { + rc = ARGS_PHRASE; /* Scan ahead to tab (can't be escaped). */ p = strchr(*v, '\t'); @@ -488,7 +490,7 @@ args(struct mdoc *m, int line, int *pos, for (pp = &buf[*pos]; ' ' == *pp; pp++, (*pos)++) /* Skip ahead. */ ; - return(ARGS_PHRASE); + return(rc); } /* diff --git a/mdoc_macro.c b/mdoc_macro.c index eef40906..8bde22e5 100644 --- a/mdoc_macro.c +++ b/mdoc_macro.c @@ -632,7 +632,6 @@ append_delims(struct mdoc *mdoc, int line, int *pos, char *buf) for (;;) { lastarg = *pos; ac = mdoc_zargs(mdoc, line, pos, buf, ARGS_NOWARN, &p); - assert(ARGS_PHRASE != ac); if (ARGS_ERROR == ac) return(0); @@ -965,6 +964,7 @@ blk_full(MACRO_PROT_ARGS) /* Don't emit leading punct. for phrases. */ if (NULL == head && ARGS_PHRASE != ac && + ARGS_PPHRASE != ac && ARGS_QWORD != ac && 1 == mdoc_isdelim(p)) { if ( ! mdoc_word_alloc(m, line, la, p)) @@ -974,13 +974,14 @@ blk_full(MACRO_PROT_ARGS) /* Always re-open head for phrases. */ - if (NULL == head || ARGS_PHRASE == ac) { + if (NULL == head || ARGS_PHRASE == ac || + ARGS_PPHRASE == ac) { if ( ! mdoc_head_alloc(m, line, ppos, tok)) return(0); head = m->last; } - if (ARGS_PHRASE == ac) { + if (ARGS_PHRASE == ac || ARGS_PPHRASE == ac) { if ( ! phrase(m, line, la, buf)) return(0); if ( ! rew_sub(MDOC_HEAD, m, tok, line, ppos)) @@ -1084,8 +1085,6 @@ blk_part_imp(MACRO_PROT_ARGS) la = *pos; ac = mdoc_args(m, line, pos, buf, tok, &p); - assert(ARGS_PHRASE != ac); - if (ARGS_ERROR == ac) return(0); if (ARGS_EOLN == ac) @@ -1187,8 +1186,6 @@ blk_part_exp(MACRO_PROT_ARGS) if (ARGS_EOLN == ac) break; - assert(ARGS_PHRASE != ac); - /* Flush out leading punctuation. */ if (NULL == head && ARGS_QWORD != ac && |