# HG changeset patch # User Richard M. Stallman # Date 873796614 0 # Node ID f03431d495483cef15b520caaa832b56613315b2 # Parent 1e682aef0ce06c7477618bedabec69643555c1cb (standard-display-european): If AUTO is non-nil, intern it. Don't call set-terminal-coding-system if noninteractive. diff -r 1e682aef0ce0 -r f03431d49548 lisp/disp-table.el --- a/lisp/disp-table.el Tue Sep 09 09:02:25 1997 +0000 +++ b/lisp/disp-table.el Tue Sep 09 09:16:54 1997 +0000 @@ -204,11 +204,11 @@ (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])