diff options
| author | Kenichi Handa <handa@m17n.org> | 2000-09-07 12:41:37 +0000 |
|---|---|---|
| committer | Kenichi Handa <handa@m17n.org> | 2000-09-07 12:41:37 +0000 |
| commit | fc53a2147a655cb0bef79fcdd76e4df6414c8ded (patch) | |
| tree | 025ec35828a6f5caa76ecf5cbc4cabadf57fc30d /src/coding.c | |
| parent | ed2541914df898e55a70b8a48edbf5a1f76ee24c (diff) | |
(encode_coding_sjis_big5): Fix previous change.
Diffstat (limited to 'src/coding.c')
| -rw-r--r-- | src/coding.c | 2 |
1 files changed, 2 insertions, 0 deletions
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. */ |
