diff options
Diffstat (limited to 'lib/mbrtowc-impl-utf8.h')
-rw-r--r-- | lib/mbrtowc-impl-utf8.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mbrtowc-impl-utf8.h b/lib/mbrtowc-impl-utf8.h index b27516bc9..ea5ef1fe5 100644 --- a/lib/mbrtowc-impl-utf8.h +++ b/lib/mbrtowc-impl-utf8.h @@ -96,7 +96,7 @@ if ((c2 ^ 0x80) < 0x40 && (c >= 0xf1 || c2 >= 0x90) - && (c < 0xf4 || (c == 0xf4 && c2 < 0x90))) + && (c < 0xf4 || (/* c == 0xf4 && */ c2 < 0x90))) { if (m == 2) goto incomplete; |