1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-21 05:00:47 -08:00

(decode_coding_iso2022): Set coding->fake_multibyte to

1 when encountered with a code of the range 0x80..0x9F.
This commit is contained in:
Kenichi Handa 1998-10-17 01:58:01 +00:00
parent 7540af8576
commit 174a4cbee1

View file

@ -1095,6 +1095,8 @@ decode_coding_iso2022 (coding, source, destination, src_bytes, dst_bytes)
}
*dst++ = c1;
coding->produced_char++;
if (c1 >= 0x80)
coding->fake_multibyte = 1;
break;
case ISO_carriage_return: