mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-03-03 12:31:32 -08:00
(IT_write_glyphs): Don't convert 7-bit ASCII characters via
nonascii-translation-table.
This commit is contained in:
parent
3e1f7d51ce
commit
f0dd4c3524
1 changed files with 2 additions and 1 deletions
|
|
@ -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. */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue