(detect_coding_mask): Fix the incorrect handling of arg MULTIBYTEP.

This commit is contained in:
Kenichi Handa 2001-03-08 02:19:18 +00:00
parent a1b12fe90e
commit 67091e5974

View file

@ -3980,7 +3980,7 @@ detect_coding_mask (source, src_bytes, priorities, skip, multibytep)
int try;
if (multibytep && c == LEADING_CODE_8_BIT_CONTROL)
c = *src++ - 0x20;
c = src[1] - 0x20;
if (c < 0xA0)
{