diff options
| author | Eli Zaretskii | 1998-12-21 16:10:52 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 1998-12-21 16:10:52 +0000 |
| commit | f0dd4c35249d5416abdce6bdbf5d5bf94b2b3537 (patch) | |
| tree | 70cd87aec315e7eda13f2e73a3d51b55971c8244 | |
| parent | 3e1f7d51ce9304036b8be92e263b6bb271e91110 (diff) | |
| download | emacs-f0dd4c35249d5416abdce6bdbf5d5bf94b2b3537.tar.gz emacs-f0dd4c35249d5416abdce6bdbf5d5bf94b2b3537.zip | |
(IT_write_glyphs): Don't convert 7-bit ASCII characters via
nonascii-translation-table.
| -rw-r--r-- | src/msdos.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/msdos.c b/src/msdos.c index f94413ee452..4f241cec4ef 100644 --- a/src/msdos.c +++ b/src/msdos.c | |||
| @@ -728,7 +728,8 @@ IT_write_glyphs (GLYPH *str, int str_len) | |||
| 728 | ch = FAST_GLYPH_CHAR (g); | 728 | ch = FAST_GLYPH_CHAR (g); |
| 729 | if (unibyte_display_via_language_environment | 729 | if (unibyte_display_via_language_environment |
| 730 | && SINGLE_BYTE_CHAR_P (ch) | 730 | && SINGLE_BYTE_CHAR_P (ch) |
| 731 | && (ch >= 0240 || !NILP (Vnonascii_translation_table))) | 731 | && (ch >= 0240 |
| 732 | || (ch >= 0200 && !NILP (Vnonascii_translation_table)))) | ||
| 732 | ch = unibyte_char_to_multibyte (ch); | 733 | ch = unibyte_char_to_multibyte (ch); |
| 733 | 734 | ||
| 734 | /* Invalid characters are displayed with a special glyph. */ | 735 | /* Invalid characters are displayed with a special glyph. */ |