[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.75 and 1.76

version 1.75, 2021/08/10 12:55:04 version 1.76, 2022/04/08 16:53:45
Line 820  tbl_literal(struct termp *tp, const struct tbl_dat *dp
Line 820  tbl_literal(struct termp *tp, const struct tbl_dat *dp
         width = col->width;          width = col->width;
         ic = dp->layout->col;          ic = dp->layout->col;
         hspans = dp->hspans;          hspans = dp->hspans;
         while (hspans--)          while (hspans--) {
                 width += tp->tbl.cols[++ic].width + 3;                  width += tp->tbl.cols[ic].spacing;
                   ic++;
                   width += tp->tbl.cols[ic].width;
           }
   
         padr = width > len ? width - len : 0;          padr = width > len ? width - len : 0;
         padl = 0;          padl = 0;

Legend:
Removed from v.1.75  
changed lines
  Added in v.1.76

CVSweb