From fc53a2147a655cb0bef79fcdd76e4df6414c8ded Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Thu, 7 Sep 2000 12:41:37 +0000 Subject: [PATCH] (encode_coding_sjis_big5): Fix previous change. --- src/coding.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/coding.c b/src/coding.c index 8e284122ee4..366cf6647a7 100644 --- a/src/coding.c +++ b/src/coding.c @@ -2598,6 +2598,8 @@ encode_coding_sjis_big5 (coding, source, destination, } else if (charset == charset_katakana_jisx0201) EMIT_ONE_BYTE (c1 | 0x80); + else if (charset == charset_latin_jisx0201) + EMIT_ONE_BYTE (c1); else /* There's no way other than producing the internal codes as is. */ -- 2.39.5