# HG changeset patch # User Richard M. Stallman # Date 894592435 0 # Node ID c041ffd185c71259a5111508ca431ce3927ce7c4 # Parent e80802548c11fbaff83ad728be1d1320a1b6f6d5 (standard-display-european): Don't call set-terminal-coding-system when window-system is w32. diff -r e80802548c11 -r c041ffd185c7 lisp/disp-table.el --- 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.