Re: [hackers] [st][PATCH] Do not mark as invalid UTF8 control codes

2015-08-17 Thread Daniel Martí
On Mon, Aug 17, 2015 at 11:29:34 +0200, Roberto E. Vargas Caballero wrote: > wcwidth() returns -1 in all the non visible characters, but it doesn't > mind that they are incorrect. It only means that they are not printable. nits: s/in all the/for all the/ s/doesn't mind that/doesn't necessarily mea

[hackers] [st][PATCH] Do not mark as invalid UTF8 control codes

2015-08-17 Thread Roberto E. Vargas Caballero
wcwidth() returns -1 in all the non visible characters, but it doesn't mind that they are incorrect. It only means that they are not printable. --- st.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/st.c b/st.c index 1df4fde..35a840b 100644 --- a/st.c +++ b/st.c @@ -2895,