(idlwave): Finish `defgroup' description with period.
[emacs.git] / lisp / term / linux.el
blob71b9e0d4bcf02311461496dfaaa8b8390b87f4fc
1 ;; -*- no-byte-compile: t -*-
2 ;; The Linux console handles Latin-1 by default.
4 (unless (terminal-coding-system)
5 (set-terminal-coding-system 'iso-latin-1))
7 ;; It can't really display underlines.
8 (tty-no-underline)
10 ;; Make Latin-1 input characters work, too.
11 ;; Meta will continue to work, because the kernel
12 ;; turns that into Escape.
14 (let ((value (current-input-mode)))
15 ;; The third arg only matters in that it is not t or nil.
16 (set-input-mode (nth 0 value) (nth 1 value) 'iso-latin-1 (nth 3 value)))
18 ;;; arch-tag: 5d0c4f63-739b-4862-abf3-041fe42adb8f
19 ;;; linux.el ends here