[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.36 and 1.37

version 1.36, 2015/01/30 04:11:50 version 1.37, 2015/01/30 17:32:16
Line 81  term_tbl(struct termp *tp, const struct tbl_span *sp)
Line 81  term_tbl(struct termp *tp, const struct tbl_span *sp)
          * calculate the table widths and decimal positions.           * calculate the table widths and decimal positions.
          */           */
   
         if (sp->flags & TBL_SPAN_FIRST) {          if (tp->tbl.cols == NULL) {
                 term_flushln(tp);                  term_flushln(tp);
   
                 tp->tbl.len = term_tbl_len;                  tp->tbl.len = term_tbl_len;
Line 189  term_tbl(struct termp *tp, const struct tbl_span *sp)
Line 189  term_tbl(struct termp *tp, const struct tbl_span *sp)
          * existing table configuration and set it to NULL.           * existing table configuration and set it to NULL.
          */           */
   
         if (sp->flags & TBL_SPAN_LAST) {          if (sp->next == NULL) {
                 if (sp->opts->opts & (TBL_OPT_DBOX | TBL_OPT_BOX)) {                  if (sp->opts->opts & (TBL_OPT_DBOX | TBL_OPT_BOX)) {
                         tbl_hrule(tp, sp, 1);                          tbl_hrule(tp, sp, 1);
                         tp->skipvsp = 1;                          tp->skipvsp = 1;

Legend:
Removed from v.1.36  
changed lines
  Added in v.1.37

CVSweb