st
simple terminal
git clone https://9o.is/git/st.git
commit c3dc66b86a027b703045e3a3ec884520c540cdfe parent 38269adb401111431549a46742c185a17950858c Author: czarkoff@gmail.com <czarkoff@gmail.com> Date: Tue, 28 Oct 2014 12:55:28 +0100 Replace character with U+FFFD if wcwidth() is -1 Helpful when new Unicode codepoints are not recognized by libc. Diffstat:
| M | st.c | | | 5 | ++++- |
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/st.c b/st.c @@ -2576,7 +2576,10 @@ tputc(char *c, int len) { unicodep = ascii = *c; } else { utf8decode(c, &unicodep, UTF_SIZ); - width = wcwidth(unicodep); + if ((width = wcwidth(unicodep)) == -1) { + c = "\357\277\275"; /* UTF_INVALID */ + width = 1; + } control = ISCONTROLC1(unicodep); ascii = unicodep; }