diff options
| -rw-r--r-- | src/w32term.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/w32term.c b/src/w32term.c index 8f5682cb934..72e32b37f0b 100644 --- a/src/w32term.c +++ b/src/w32term.c | |||
| @@ -558,7 +558,7 @@ BOOL | |||
| 558 | w32_use_unicode_for_codepage (codepage) | 558 | w32_use_unicode_for_codepage (codepage) |
| 559 | { | 559 | { |
| 560 | /* If the current codepage is supported, use Unicode for output. */ | 560 | /* If the current codepage is supported, use Unicode for output. */ |
| 561 | return (w32_no_unicode_output | 561 | return (!w32_no_unicode_output |
| 562 | && codepage != CP_DEFAULT && IsValidCodePage (codepage)); | 562 | && codepage != CP_DEFAULT && IsValidCodePage (codepage)); |
| 563 | } | 563 | } |
| 564 | 564 | ||
| @@ -5165,7 +5165,7 @@ When nil, the right-alt and left-ctrl key combination is\n\ | |||
| 5165 | interpreted normally."); | 5165 | interpreted normally."); |
| 5166 | Vw32_recognize_altgr = Qt; | 5166 | Vw32_recognize_altgr = Qt; |
| 5167 | DEFVAR_BOOL ("w32-no-unicode-output", | 5167 | DEFVAR_BOOL ("w32-no-unicode-output", |
| 5168 | w32_no_unicode_output, | 5168 | &w32_no_unicode_output, |
| 5169 | "Disable the use of Unicode for text output if non-nil.\n\ | 5169 | "Disable the use of Unicode for text output if non-nil.\n\ |
| 5170 | Unicode output may prevent some third party applications for displaying\n\ | 5170 | Unicode output may prevent some third party applications for displaying\n\ |
| 5171 | Far-East Languages on Windows 95/98 from working properly.\n\ | 5171 | Far-East Languages on Windows 95/98 from working properly.\n\ |