# HG changeset patch # User Eli Zaretskii # Date 914256569 0 # Node ID 1deaaafdf9eaad0eea2bc2e30092a2d1e5406967 # Parent e3421077c4120948414f55094f6d6fed63d1738e (dumpglyphs): Don't convert 7-bit ASCII characters via nonascii-translation-table. diff -r e3421077c412 -r 1deaaafdf9ea src/xterm.c --- a/src/xterm.c Mon Dec 21 11:24:39 1998 +0000 +++ b/src/xterm.c Mon Dec 21 16:09:29 1998 +0000 @@ -582,7 +582,8 @@ 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); if (gidx == 0) XSETFASTINT (first_ch, ch); charset = CHAR_CHARSET (ch); @@ -623,7 +624,8 @@ 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); SPLIT_CHAR (ch, this_charset, c1, c2); if (this_charset != charset