Mercurial > emacs
diff src/msdos.c @ 23971:35ba3fe1ad69
(IT_write_glyphs): Convert unibyte characters to
multibyte in unibyte buffers only.
| author | Eli Zaretskii <eliz@gnu.org> |
|---|---|
| date | Thu, 31 Dec 1998 16:32:53 +0000 |
| parents | f2d6df96a3c7 |
| children | fce0e760c4ab |
line wrap: on
line diff
--- a/src/msdos.c Thu Dec 31 14:40:03 1998 +0000 +++ b/src/msdos.c Thu Dec 31 16:32:53 1998 +0000 @@ -726,7 +726,11 @@ /* Convert the character code to multibyte, if they requested display via language environment. */ ch = FAST_GLYPH_CHAR (g); - if (unibyte_display_via_language_environment + /* We only want to convert unibyte characters to multibyte + in unibyte buffers! Otherwise, the 8-bit code might come + from the display table set up to display foreign characters. */ + if (NILP (current_buffer->enable_multibyte_characters) + && unibyte_display_via_language_environment && SINGLE_BYTE_CHAR_P (ch) && (ch >= 0240 || (ch >= 0200 && !NILP (Vnonascii_translation_table))))
