From: Kenichi Handa Date: Sat, 17 Oct 1998 01:58:01 +0000 (+0000) Subject: (decode_coding_iso2022): Set coding->fake_multibyte to X-Git-Tag: emacs-20.4~1474 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=174a4cbee140d8c1bea7993c031a64d95b8c37ff;p=emacs.git (decode_coding_iso2022): Set coding->fake_multibyte to 1 when encountered with a code of the range 0x80..0x9F. --- diff --git a/src/coding.c b/src/coding.c index d32a35f31fb..c9bb4f92344 100644 --- a/src/coding.c +++ b/src/coding.c @@ -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: