diff options
author | Karl Heuer <kwzh@gnu.org> | 1997-12-19 14:57:14 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1997-12-19 14:57:14 +0000 |
commit | dcaa5925632d41f285b1638179e30cedd5bfef9f (patch) | |
tree | 5ef3fa19437e9e5ccff56ab858f77c5362a56430 /lisp/term/linux.el | |
parent | eebbfb01172dea298ed9ac24acda07ed4827cca7 (diff) | |
download | emacs-dcaa5925632d41f285b1638179e30cedd5bfef9f.tar.gz |
Don't call set-terminal-coding-system
if it was already set.
Diffstat (limited to 'lisp/term/linux.el')
-rw-r--r-- | lisp/term/linux.el | 3 |
1 files changed, 2 insertions, 1 deletions
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 |