Re: [dev] [st] [PATCH] Fixed STR sequence termination condition

2015-04-06 Thread Roberto E. Vargas Caballero
ascii code may only be checked for characters that have length equal to 1, not width equal to 1 I think they are equivalent, but I like more the 'len' versin, so I will apply it. Thanks,

Re: [dev] [st] [PATCH] Fixed STR sequence termination condition

2015-04-06 Thread noname
On Mon, Apr 06, 2015 at 10:50:07AM +0200, Roberto E. Vargas Caballero wrote: ascii code may only be checked for characters that have length equal to 1, not width equal to 1 I think they are equivalent, but I like more the 'len' versin, so I will apply it. They are not equivalent at all.

Re: [dev] [st] [PATCH] Fixed STR sequence termination condition

2015-04-06 Thread Roberto E. Vargas Caballero
'width' is how much columns the character takes. It is one for 'ß' as Uhmmm, you are right (it is a shame for me because I wrote this part ^^!!!).

[dev] [st] [PATCH] Fixed STR sequence termination condition

2015-04-05 Thread noname
ascii code may only be checked for characters that have length equal to 1, not width equal to 1 --- st.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/st.c b/st.c index 39d3fee..827ed08 100644 --- a/st.c +++ b/st.c @@ -2663,7 +2663,7 @@ tputc(char *c, int len) { *