coding.c (detect_coding_iso_2022): Fix previous change.
This commit is contained in:
parent
1943141cf6
commit
21c1abcae1
1 changed files with 2 additions and 2 deletions
|
@ -3166,7 +3166,7 @@ detect_coding_iso_2022 (struct coding_system *coding,
|
|||
if (inhibit_iso_escape_detection)
|
||||
break;
|
||||
single_shifting = 0;
|
||||
rejected |= CATEGORY_MASK_ISO_7BIT;
|
||||
rejected |= CATEGORY_MASK_ISO_7BIT | CATEGORY_MASK_ISO_7_ELSE;
|
||||
if (CODING_ISO_FLAGS (&coding_categories[coding_category_iso_8_1])
|
||||
& CODING_ISO_FLAG_SINGLE_SHIFT)
|
||||
{
|
||||
|
@ -3193,9 +3193,9 @@ detect_coding_iso_2022 (struct coding_system *coding,
|
|||
single_shifting = 0;
|
||||
break;
|
||||
}
|
||||
rejected |= CATEGORY_MASK_ISO_7BIT | CATEGORY_MASK_ISO_7_ELSE;
|
||||
if (c >= 0xA0)
|
||||
{
|
||||
rejected |= CATEGORY_MASK_ISO_7BIT | CATEGORY_MASK_ISO_7_ELSE;
|
||||
found |= CATEGORY_MASK_ISO_8_1;
|
||||
/* Check the length of succeeding codes of the range
|
||||
0xA0..0FF. If the byte length is even, we include
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue