diff options
Diffstat (limited to 'src')
| -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. */ |