summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--term.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/term.c b/term.c
index 68cc1b4c..1991c70f 100644
--- a/term.c
+++ b/term.c
@@ -564,7 +564,7 @@ encode1(struct termp *p, int c)
if (p->col + 7 >= p->maxcols)
adjbuf(p, p->col + 7);
- f = (c == ASCII_HYPH || isgraph(c)) ?
+ f = (c == ASCII_HYPH || c > 127 || isgraph(c)) ?
p->fontq[p->fonti] : TERMFONT_NONE;
if (p->flags & TERMP_BACKBEFORE) {