diff options
| author | Kenichi Handa | 2000-09-07 12:41:37 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2000-09-07 12:41:37 +0000 |
| commit | fc53a2147a655cb0bef79fcdd76e4df6414c8ded (patch) | |
| tree | 025ec35828a6f5caa76ecf5cbc4cabadf57fc30d /src/coding.c | |
| parent | ed2541914df898e55a70b8a48edbf5a1f76ee24c (diff) | |
| download | emacs-fc53a2147a655cb0bef79fcdd76e4df6414c8ded.tar.gz emacs-fc53a2147a655cb0bef79fcdd76e4df6414c8ded.zip | |
(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, | |||
| 2598 | } | 2598 | } |
| 2599 | else if (charset == charset_katakana_jisx0201) | 2599 | else if (charset == charset_katakana_jisx0201) |
| 2600 | EMIT_ONE_BYTE (c1 | 0x80); | 2600 | EMIT_ONE_BYTE (c1 | 0x80); |
| 2601 | else if (charset == charset_latin_jisx0201) | ||
| 2602 | EMIT_ONE_BYTE (c1); | ||
| 2601 | else | 2603 | else |
| 2602 | /* There's no way other than producing the internal | 2604 | /* There's no way other than producing the internal |
| 2603 | codes as is. */ | 2605 | codes as is. */ |