]> git.eshelyaron.com Git - emacs.git/commitdiff
(standard-display-european): If AUTO is non-nil, intern it.
authorRichard M. Stallman <rms@gnu.org>
Tue, 9 Sep 1997 09:16:54 +0000 (09:16 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 9 Sep 1997 09:16:54 +0000 (09:16 +0000)
Don't call set-terminal-coding-system if noninteractive.

lisp/disp-table.el

index bda4802142f047bda5bb47fe467dd0b7285cf8cb..df171e171900d6d0f1f955eaf1c9c79cff29ec05 100644 (file)
@@ -204,11 +204,11 @@ AUTO also specifies, in this case, the coding system for terminal output."
     (or auto
        (setq-default enable-multibyte-characters nil))
     (standard-display-8bit 160 255)
-    (unless (eq window-system 'x)
+    (unless (or noninteractive (eq window-system 'x))
       ;; 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.
-      (set-terminal-coding-system (or auto 'latin-1)))
+      (set-terminal-coding-system (if auto (intern auto) 'latin-1)))
     ;; Make non-line-break space display as a plain space.
     ;; Most X fonts do the wrong thing for code 160.
     (aset standard-display-table 160 [32])