Hi Benno, > * lib/mbrtowc-impl-utf8.h: There is no need to check for c == 0xf4 > when !(c < 0xf4), as ten lines earlier c <= 0xf4 was established.
Your patch is correct. But we generally don't need to do micro- optimizations that a compiler easily can do for us. Just curious: Did you get a compiler warning about this code? If so, from which compiler? Or did you find this redundancy by staring at the code? Bruno