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

Diff for /mandoc/tbl_term.c between version 1.62 and 1.63

version 1.62, 2018/11/28 04:47:51 version 1.63, 2018/11/28 13:43:54
Line 437  term_tbl(struct termp *tp, const struct tbl_span *sp)
Line 437  term_tbl(struct termp *tp, const struct tbl_span *sp)
                                  * but not after the last column.                                   * but not after the last column.
                                  */                                   */
   
                                 if (fc == 0 && ((uvert == 0 && dvert == 0 &&                                  if (fc == 0 &&
                                      (cp->next == NULL ||                                      ((uvert == 0 && dvert == 0 &&
                                         cp != NULL && (cp->next == NULL ||
                                       !IS_HORIZ(cp->next))) ||                                        !IS_HORIZ(cp->next))) ||
                                     tp->tcol + 1 == tp->tcols + tp->lasttcol)) {                                       tp->tcol + 1 ==
                                         cp = cp->next;                                        tp->tcols + tp->lasttcol)) {
                                           if (cp != NULL)
                                                   cp = cp->next;
                                         continue;                                          continue;
                                 }                                  }
   

Legend:
Removed from v.1.62  
changed lines
  Added in v.1.63

CVSweb