]> code.delx.au - gnu-emacs/blob - lisp/term/linux.el
Nuke arch-tags.
[gnu-emacs] / lisp / term / linux.el
1 ;; -*- no-byte-compile: t -*-
2 ;; The Linux console handles Latin-1 by default.
3
4 (defun terminal-init-linux ()
5 "Terminal initialization function for linux."
6 (unless (terminal-coding-system)
7 (set-terminal-coding-system 'iso-latin-1))
8
9 ;; It can't really display underlines.
10 (tty-no-underline)
11
12 (ignore-errors (when gpm-mouse-mode (require 't-mouse) (gpm-mouse-enable)))
13
14 ;; Make Latin-1 input characters work, too.
15 ;; Meta will continue to work, because the kernel
16 ;; turns that into Escape.
17
18 ;; The arg only matters in that it is not t or nil.
19 (set-input-meta-mode 'iso-latin-1))
20
21 ;;; linux.el ends here