1. According to the UTF-8 spec, ASCII character's charcode is from
0 to 127 inclusively.
2. Any charcode which is greater than or equal to 128 will be
a multi-byte character.
Origin: 3.24.39, commit:
1659cefde792f127f604f15ae12f17ede10f1c00
Gbp-Pq: Name Fix-a-typo.patch
parser->data++;
return TRUE;
}
- if ((*(guchar *) parser->data) >= 127)
+ if ((*(guchar *) parser->data) >= 128)
{
gsize len = g_utf8_skip[(guint) *(guchar *) parser->data];