Some fixes to follow coding conventions.
[bpt/emacs.git] / lisp / term / linux.el
1 ;; The Linux console handles Latin-1 by default.
2
3 (unless (terminal-coding-system)
4 (set-terminal-coding-system 'iso-latin-1))
5
6 ;; Make Latin-1 input characters work, too.
7 ;; Meta will continue to work, because the kernel
8 ;; turns that into Escape.
9
10 (let ((value (current-input-mode)))
11 ;; The third arg only matters in that it is not t or nil.
12 (set-input-mode (nth 0 value) (nth 1 value) 'iso-latin-1 (nth 3 value)))
13
14 ;;; linux.el ends here