[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.37 and 1.41

version 1.37, 2015/01/30 17:32:16 version 1.41, 2015/09/26 00:54:04
Line 82  term_tbl(struct termp *tp, const struct tbl_span *sp)
Line 82  term_tbl(struct termp *tp, const struct tbl_span *sp)
          */           */
   
         if (tp->tbl.cols == NULL) {          if (tp->tbl.cols == NULL) {
                 term_flushln(tp);  
   
                 tp->tbl.len = term_tbl_len;                  tp->tbl.len = term_tbl_len;
                 tp->tbl.slen = term_tbl_strlen;                  tp->tbl.slen = term_tbl_strlen;
                 tp->tbl.arg = tp;                  tp->tbl.arg = tp;
Line 305  tbl_data(struct termp *tp, const struct tbl_opts *opts
Line 303  tbl_data(struct termp *tp, const struct tbl_opts *opts
                 break;                  break;
         default:          default:
                 abort();                  abort();
                 /* NOTREACHED */  
         }          }
 }  }
   
Line 414  tbl_number(struct termp *tp, const struct tbl_opts *op
Line 411  tbl_number(struct termp *tp, const struct tbl_opts *op
 static void  static void
 tbl_word(struct termp *tp, const struct tbl_dat *dp)  tbl_word(struct termp *tp, const struct tbl_dat *dp)
 {  {
         const void      *prev_font;          int              prev_font;
   
         prev_font = term_fontq(tp);          prev_font = tp->fonti;
         if (dp->layout->flags & TBL_CELL_BOLD)          if (dp->layout->flags & TBL_CELL_BOLD)
                 term_fontpush(tp, TERMFONT_BOLD);                  term_fontpush(tp, TERMFONT_BOLD);
         else if (dp->layout->flags & TBL_CELL_ITALIC)          else if (dp->layout->flags & TBL_CELL_ITALIC)

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

CVSweb