Re: [dev] [ST] [PATCH] Changed type for UTF-32 codepoints from long to uint_least32_t

2015-05-06 Thread Roberto E. Vargas Caballero
Applied, thanks!

[dev] [ST] [PATCH] Changed type for UTF-32 codepoints from long to uint_least32_t

2015-05-05 Thread suigin
Hi all, here's a patch that changes occurences of long to uint_least32_t where it's being used to store UTF-32 codepoints, as was previously discussed. Other cases where long is used are preserved as is. --- st.c | 50 +- 1 file changed, 25

Re: [dev] [ST] [PATCH] Changed type for UTF-32 codepoints from long to uint_least32_t

2015-05-05 Thread suigin
On Tue, May 05, 2015 at 07:37:01PM +0100, Connor Lane Smith wrote: Hi, I get the feeling we should typedef uint_least32_t Rune, as in libutf, so we don't have to have this long-winded and somewhat cryptic type everywhere. cls No prob, here's the same patch, but using a `Rune' typedef.

Re: [dev] [ST] [PATCH] Changed type for UTF-32 codepoints from long to uint_least32_t

2015-05-05 Thread Connor Lane Smith
Hi, On 5 May 2015 at 19:31, suigin suigin@national.shitposting.agency wrote: Hi all, here's a patch that changes occurences of long to uint_least32_t where it's being used to store UTF-32 codepoints, as was previously discussed. Other cases where long is used are preserved as is. I get the