changeset 21992:c041ffd185c7

(standard-display-european): Don't call set-terminal-coding-system when window-system is w32.
author Richard M. Stallman <rms@gnu.org>
date Fri, 08 May 1998 01:53:55 +0000
parents e80802548c11
children 3a95abf581d7
files lisp/disp-table.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/disp-table.el	Fri May 08 00:08:09 1998 +0000
+++ b/lisp/disp-table.el	Fri May 08 01:53:55 1998 +0000
@@ -203,7 +203,7 @@
 	       (equal (aref standard-display-table 161) [161])))
       (progn
 	(standard-display-default 160 255)
-	(unless (eq window-system 'x)
+	(unless (memq window-system '(x w32))
 	  (set-terminal-coding-system nil)))
     ;; If the user does this explicitly,
     ;; turn off multibyte chars for more compatibility.
@@ -218,7 +218,7 @@
     (unless auto
       (if (equal current-language-environment "English")
 	  (set-language-environment "latin-1")))
-    (unless (or noninteractive (eq window-system 'x))
+    (unless (or noninteractive (memq window-system '(x w32)))
       ;; Send those codes literally to a non-X terminal.
       ;; If AUTO is nil, we are using single-byte characters,
       ;; so it doesn't matter which one we use.