[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.40

version 1.37, 2015/01/30 17:32:16 version 1.40, 2015/03/06 15:48:53
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 414  tbl_number(struct termp *tp, const struct tbl_opts *op
Line 412  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.40

CVSweb