diff options
Diffstat (limited to 'tbl_term.c')
-rw-r--r-- | tbl_term.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -414,9 +414,9 @@ tbl_number(struct termp *tp, const struct tbl_opts *opts, static void 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) term_fontpush(tp, TERMFONT_BOLD); else if (dp->layout->flags & TBL_CELL_ITALIC) |