mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-03 08:30:09 +00:00
4f0c9ba732
all former top level forms in the file. * term/bobcat.el (terminal-init-bobcat): * term/cygwin.el (terminal-init-cygwin): * term/iris-ansi.el (terminal-init-iris-ansi): * term/linux.el (terminal-init-linux): * term/news.el (terminal-init-news): * term/rxvt.el (terminal-init-rxvt): * term/sun.el (terminal-init-sun): * term/tvi970.el (terminal-init-tvi970): * term/vt100.el (terminal-init-vt100): * term/vt102.el (terminal-init-vt102): * term/vt125.el (terminal-init-vt125): * term/vt200.el (terminal-init-vt200): * term/vt201.el (terminal-init-vt201): * term/vt220.el (terminal-init-vt220): * term/vt240.el (terminal-init-vt240): * term/vt300.el (terminal-init-vt300): * term/vt320.el (terminal-init-vt320): * term/vt400.el (terminal-init-vt400): * term/vt420.el (terminal-init-vt420): * term/wyse50.el (terminal-init-wyse50): * term/xterm.el (terminal-init-xterm): Likewise. * term/README: Describe the terminal-init-* functionality. * startup.el (command-line): After loading the terminal initialization file call the corresponding terminal initialization function.
22 lines
687 B
EmacsLisp
22 lines
687 B
EmacsLisp
;; -*- no-byte-compile: t -*-
|
|
;; The Linux console handles Latin-1 by default.
|
|
|
|
(defun terminal-init-linux ()
|
|
"Terminal initialization function for linux."
|
|
(unless (terminal-coding-system)
|
|
(set-terminal-coding-system 'iso-latin-1))
|
|
|
|
;; It can't really display underlines.
|
|
(tty-no-underline)
|
|
|
|
;; Make Latin-1 input characters work, too.
|
|
;; Meta will continue to work, because the kernel
|
|
;; turns that into Escape.
|
|
|
|
(let ((value (current-input-mode)))
|
|
;; The third arg only matters in that it is not t or nil.
|
|
(set-input-mode (nth 0 value) (nth 1 value) 'iso-latin-1 (nth 3 value))))
|
|
|
|
;;; arch-tag: 5d0c4f63-739b-4862-abf3-041fe42adb8f
|
|
;;; linux.el ends here
|