[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.42 and 1.43

version 1.42, 2015/10/06 18:32:20 version 1.43, 2015/10/12 00:08:16
Line 266  tbl_data(struct termp *tp, const struct tbl_opts *opts
Line 266  tbl_data(struct termp *tp, const struct tbl_opts *opts
                 tbl_char(tp, ASCII_NBRSP, col->width);                  tbl_char(tp, ASCII_NBRSP, col->width);
                 return;                  return;
         case TBL_DATA_HORIZ:          case TBL_DATA_HORIZ:
                 /* FALLTHROUGH */  
         case TBL_DATA_NHORIZ:          case TBL_DATA_NHORIZ:
                 tbl_char(tp, '-', col->width);                  tbl_char(tp, '-', col->width);
                 return;                  return;
         case TBL_DATA_NDHORIZ:          case TBL_DATA_NDHORIZ:
                 /* FALLTHROUGH */  
         case TBL_DATA_DHORIZ:          case TBL_DATA_DHORIZ:
                 tbl_char(tp, '=', col->width);                  tbl_char(tp, '=', col->width);
                 return;                  return;
Line 287  tbl_data(struct termp *tp, const struct tbl_opts *opts
Line 285  tbl_data(struct termp *tp, const struct tbl_opts *opts
                 tbl_char(tp, '=', col->width);                  tbl_char(tp, '=', col->width);
                 break;                  break;
         case TBL_CELL_LONG:          case TBL_CELL_LONG:
                 /* FALLTHROUGH */  
         case TBL_CELL_CENTRE:          case TBL_CELL_CENTRE:
                 /* FALLTHROUGH */  
         case TBL_CELL_LEFT:          case TBL_CELL_LEFT:
                 /* FALLTHROUGH */  
         case TBL_CELL_RIGHT:          case TBL_CELL_RIGHT:
                 tbl_literal(tp, dp, col);                  tbl_literal(tp, dp, col);
                 break;                  break;

Legend:
Removed from v.1.42  
changed lines
  Added in v.1.43

CVSweb