(detect_coding_mask): Fix the incorrect handling of arg MULTIBYTEP.
This commit is contained in:
parent
a1b12fe90e
commit
67091e5974
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue