From dcaa5925632d41f285b1638179e30cedd5bfef9f Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Fri, 19 Dec 1997 14:57:14 +0000 Subject: [PATCH] Don't call set-terminal-coding-system if it was already set. --- lisp/term/linux.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/term/linux.el b/lisp/term/linux.el index 5f279eb5568..e46efa073dd 100644 --- a/lisp/term/linux.el +++ b/lisp/term/linux.el @@ -1,6 +1,7 @@ ;; The Linux console handles Latin-1 by default. -(set-terminal-coding-system 'iso-latin-1) +(unless (terminal-coding-system) + (set-terminal-coding-system 'iso-latin-1)) ;; Make Latin-1 input characters work, too. ;; Meta will continue to work, because the kernel -- 2.39.2