[BACK]Return to tbl_term.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / mandoc

Diff for /src/usr.bin/mandoc/tbl_term.c between version 1.57 and 1.58

version 1.57, 2019/03/16 21:35:11 version 1.58, 2019/03/18 08:00:26
Line 627 
Line 627 
   
                 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 673 
Line 674 
   
                 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.57  
changed lines
  Added in v.1.58