]> git.eshelyaron.com Git - emacs.git/commitdiff
(standard-display-european): Don't call
authorRichard M. Stallman <rms@gnu.org>
Fri, 8 May 1998 01:53:55 +0000 (01:53 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 8 May 1998 01:53:55 +0000 (01:53 +0000)
set-terminal-coding-system when window-system is w32.

lisp/disp-table.el

index 849a6a92e8aefac4fdfcefe628711284608335a0..1fe43c43d1154deb099d2e09c74f7842bce31fd2 100644 (file)
@@ -203,7 +203,7 @@ probably want to edit European characters in single-byte mode."
               (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 @@ probably want to edit European characters in single-byte mode."
     (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.