summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Lohmann2015-08-30 11:29:23 +0200
committerChristoph Lohmann2015-08-30 11:29:23 +0200
commit0c94f8621b738c51c9e08abc3c52fe8dfe24b953 (patch)
tree6ca8cc77e3ba7cc1a72f19683e2d7f3d19aef76d
parent0d838b72437c6cac0d87366352939fdb86c2b697 (diff)
parent7e61f5e4c514a233250442263b62d887c9e5ca9c (diff)
downloadst-0c94f8621b738c51c9e08abc3c52fe8dfe24b953.tar.gz
st-0c94f8621b738c51c9e08abc3c52fe8dfe24b953.tar.xz
st-0c94f8621b738c51c9e08abc3c52fe8dfe24b953.zip
Merge branch 'master' of ssh://suckless.org/gitrepos/st
-rw-r--r--st.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/st.c b/st.c
index e76aaf3..aaf868d 100644
--- a/st.c
+++ b/st.c
@@ -2896,15 +2896,15 @@ tputc(Rune u)
int width, len;
Glyph *gp;
+ control = ISCONTROL(u);
len = utf8encode(u, c);
- if ((width = wcwidth(u)) == -1) {
+ if (!control && (width = wcwidth(u)) == -1) {
memcpy(c, "\357\277\275", 4); /* UTF_INVALID */
width = 1;
}
if (IS_SET(MODE_PRINT))
tprinter(c, len);
- control = ISCONTROL(u);
/*
* STR sequence must be checked before anything else