diff options
| author | Eli Zaretskii | 1998-12-21 16:12:53 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 1998-12-21 16:12:53 +0000 |
| commit | 543b4f618f1a5b4f4c01ab0e25ba812b65fc18a9 (patch) | |
| tree | 01937440b271a200e1dfe388d770586dfc6acab7 /src | |
| parent | f9638719e24e1d74b610a2355b51ff1d9cf4dcbe (diff) | |
| download | emacs-543b4f618f1a5b4f4c01ab0e25ba812b65fc18a9.tar.gz emacs-543b4f618f1a5b4f4c01ab0e25ba812b65fc18a9.zip | |
(unibyte_char_to_multibyte): Don't convert 7-bit ASCII characters via
nonascii-translation-table.
Diffstat (limited to 'src')
| -rw-r--r-- | src/charset.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/charset.c b/src/charset.c index ecf70b0ec1b..0b3d4266c8d 100644 --- a/src/charset.c +++ b/src/charset.c | |||
| @@ -358,7 +358,7 @@ int | |||
| 358 | unibyte_char_to_multibyte (c) | 358 | unibyte_char_to_multibyte (c) |
| 359 | int c; | 359 | int c; |
| 360 | { | 360 | { |
| 361 | if (c < 0400) | 361 | if (c < 0400 && c >= 0200) |
| 362 | { | 362 | { |
| 363 | int c_save = c; | 363 | int c_save = c; |
| 364 | 364 | ||