aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--st.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/st.c b/st.c
index 5d4054f..1414f98 100644
--- a/st.c
+++ b/st.c
@@ -2307,7 +2307,7 @@ tputc(Rune u)
2307 Glyph *gp; 2307 Glyph *gp;
2308 2308
2309 control = ISCONTROL(u); 2309 control = ISCONTROL(u);
2310 if (!IS_SET(MODE_UTF8 | MODE_SIXEL)) { 2310 if (u < 127 || !IS_SET(MODE_UTF8 | MODE_SIXEL)) {
2311 c[0] = u; 2311 c[0] = u;
2312 width = len = 1; 2312 width = len = 1;
2313 } else { 2313 } else {