[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.69 and 1.70

version 1.69, 2019/03/16 21:35:48 version 1.70, 2019/03/18 08:00:34
Line 629  tbl_hrule(struct termp *tp, const struct tbl_span *spp
Line 629  tbl_hrule(struct termp *tp, const struct tbl_span *spp
   
                 lw = cpp == NULL || cpn == NULL ||                  lw = cpp == NULL || cpn == NULL ||
                     (cpn->pos != TBL_CELL_DOWN &&                      (cpn->pos != TBL_CELL_DOWN &&
                      (dpn == NULL || strcmp(dpn->string, "\\^") != 0))                       (dpn == NULL || dpn->string == NULL ||
                         strcmp(dpn->string, "\\^") != 0))
                     ? hw : 0;                      ? hw : 0;
                 tbl_direct_border(tp, BHORIZ * lw,                  tbl_direct_border(tp, BHORIZ * lw,
                     col->width + col->spacing / 2);                      col->width + col->spacing / 2);
Line 675  tbl_hrule(struct termp *tp, const struct tbl_span *spp
Line 676  tbl_hrule(struct termp *tp, const struct tbl_span *spp
   
                 rw = cpp == NULL || cpn == NULL ||                  rw = cpp == NULL || cpn == NULL ||
                     (cpn->pos != TBL_CELL_DOWN &&                      (cpn->pos != TBL_CELL_DOWN &&
                      (dpn == NULL || strcmp(dpn->string, "\\^") != 0))                       (dpn == NULL || dpn->string == NULL ||
                         strcmp(dpn->string, "\\^") != 0))
                     ? hw : 0;                      ? hw : 0;
   
                 /* The line crossing at the end of this column. */                  /* The line crossing at the end of this column. */

Legend:
Removed from v.1.69  
changed lines
  Added in v.1.70

CVSweb