mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-25 10:47:00 +00:00
d5e827929c
* lisp/term/AT386.el, lisp/term/bobcat.el, lisp/term/cygwin.el: * lisp/term/internal.el, lisp/term/iris-ansi.el, lisp/term/linux.el: * lisp/term/lk201.el, lisp/term/news.el, lisp/term/ns-win.el: * lisp/term/pc-win.el, lisp/term/rxvt.el, lisp/term/screen.el: * lisp/term/sun.el, lisp/term/tty-colors.el, lisp/term/tvi970.el: * lisp/term/vt100.el, lisp/term/vt200.el, lisp/term/w32-win.el: * lisp/term/w32console.el, lisp/term/wyse50.el, lisp/term/x-win.el: For consistency, provide 'term/name in all files that don't already.
25 lines
670 B
EmacsLisp
25 lines
670 B
EmacsLisp
;; The Linux console handles Latin-1 by default.
|
|
|
|
(declare-function gpm-mouse-enable "t-mouse" ())
|
|
|
|
(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)
|
|
|
|
(ignore-errors (when gpm-mouse-mode (require 't-mouse) (gpm-mouse-enable)))
|
|
|
|
;; Make Latin-1 input characters work, too.
|
|
;; Meta will continue to work, because the kernel
|
|
;; turns that into Escape.
|
|
|
|
;; The arg only matters in that it is not t or nil.
|
|
(set-input-meta-mode 'iso-latin-1))
|
|
|
|
(provide 'term/linux)
|
|
|
|
;;; linux.el ends here
|