[BACK]Return to mdoc_macro.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/mdoc_macro.c between version 1.158 and 1.159

version 1.158, 2014/12/18 03:10:11 version 1.159, 2014/12/18 20:58:32
Line 1559  phrase_ta(MACRO_PROT_ARGS)
Line 1559  phrase_ta(MACRO_PROT_ARGS)
         /* Make sure we are in a column list or ignore this macro. */          /* Make sure we are in a column list or ignore this macro. */
   
         n = mdoc->last;          n = mdoc->last;
         while (n != NULL && n->tok != MDOC_Bl)          while (n != NULL &&
               (n->tok != MDOC_Bl || n->flags & (MDOC_VALID | MDOC_BREAK)))
                 n = n->parent;                  n = n->parent;
         if (n == NULL || n->norm->Bl.type != LIST_column) {          if (n == NULL || n->norm->Bl.type != LIST_column) {
                 mandoc_msg(MANDOCERR_TA_STRAY, mdoc->parse,                  mandoc_msg(MANDOCERR_TA_STRAY, mdoc->parse,

Legend:
Removed from v.1.158  
changed lines
  Added in v.1.159

CVSweb