From: Eli Zaretskii Date: Mon, 21 Dec 1998 16:10:52 +0000 (+0000) Subject: (IT_write_glyphs): Don't convert 7-bit ASCII characters via X-Git-Tag: emacs-20.4~1023 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f0dd4c35249d5416abdce6bdbf5d5bf94b2b3537;p=emacs.git (IT_write_glyphs): Don't convert 7-bit ASCII characters via nonascii-translation-table. --- 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) ch = FAST_GLYPH_CHAR (g); if (unibyte_display_via_language_environment && SINGLE_BYTE_CHAR_P (ch) - && (ch >= 0240 || !NILP (Vnonascii_translation_table))) + && (ch >= 0240 + || (ch >= 0200 && !NILP (Vnonascii_translation_table)))) ch = unibyte_char_to_multibyte (ch); /* Invalid characters are displayed with a special glyph. */