Mercurial > emacs
changeset 23639:516fc58a7b7b
(w32_enable_unicode_output): Rename from
w32_no_unicode_output.
(w32_use_unicode_for_codepage, syms_of_w32term): Use new name
and new semantics.
author | Geoff Voelker <voelker@cs.washington.edu> |
---|---|
date | Wed, 04 Nov 1998 23:42:04 +0000 |
parents | e6fb9ffee4f4 |
children | 51102c1dc0c3 |
files | src/w32term.c |
diffstat | 1 files changed, 7 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- a/src/w32term.c Wed Nov 04 23:38:42 1998 +0000 +++ b/src/w32term.c Wed Nov 04 23:42:04 1998 +0000 @@ -132,10 +132,10 @@ static int curs_x; static int curs_y; -/* Flag to disable Unicode output in case users wish to use programs +/* Flag to enable Unicode output in case users wish to use programs like Twinbridge on '95 rather than installed system level support for Far East languages. */ -int w32_no_unicode_output; +int w32_enable_unicode_output; DWORD dwWindowsThreadId = 0; HANDLE hWindowsThread = NULL; @@ -558,7 +558,7 @@ w32_use_unicode_for_codepage (codepage) { /* If the current codepage is supported, use Unicode for output. */ - return (!w32_no_unicode_output + return (w32_enable_unicode_output && codepage != CP_DEFAULT && IsValidCodePage (codepage)); } @@ -5169,12 +5169,12 @@ interpreted normally."); Vw32_recognize_altgr = Qt; - DEFVAR_BOOL ("w32-no-unicode-output", - &w32_no_unicode_output, - "Disable the use of Unicode for text output if non-nil.\n\ + DEFVAR_BOOL ("w32-enable-unicode-output", + &w32_enable_unicode_output, + "Enable the use of Unicode for text output if non-nil.\n\ Unicode output may prevent some third party applications for displaying\n\ Far-East Languages on Windows 95/98 from working properly.\n\ NT uses Unicode internally anyway, so this flag will probably have no\n\ affect on NT machines."); - w32_no_unicode_output = 0; + w32_enable_unicode_output = 1; }