changeset 23475:6f03301d36a7

(decode_coding_iso2022): Set coding->fake_multibyte to 1 when encountered with a code of the range 0x80..0x9F.
author Kenichi Handa <handa@m17n.org>
date Sat, 17 Oct 1998 01:58:01 +0000
parents 242836a572c4
children a1abe3ae2cd0
files src/coding.c
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/coding.c	Fri Oct 16 19:40:12 1998 +0000
+++ b/src/coding.c	Sat Oct 17 01:58:01 1998 +0000
@@ -1095,6 +1095,8 @@
 	    }
 	  *dst++ = c1;
 	  coding->produced_char++;
+	  if (c1 >= 0x80)
+	    coding->fake_multibyte = 1;
 	  break;
 
 	case ISO_carriage_return: