2002-10-01 17:06:54 +00:00
|
|
|
;; -*- no-byte-compile: t -*-
|
1997-07-04 20:56:42 +00:00
|
|
|
;; The Linux console handles Latin-1 by default.
|
|
|
|
|
2005-07-27 18:02:08 +00:00
|
|
|
(defun terminal-init-linux ()
|
2008-06-07 02:42:21 +00:00
|
|
|
"Terminal initialization function for linux."
|
2005-07-27 18:02:08 +00:00
|
|
|
(unless (terminal-coding-system)
|
|
|
|
(set-terminal-coding-system 'iso-latin-1))
|
1997-11-15 20:52:06 +00:00
|
|
|
|
2005-07-27 18:02:08 +00:00
|
|
|
;; It can't really display underlines.
|
|
|
|
(tty-no-underline)
|
2005-06-17 14:13:47 +00:00
|
|
|
|
2008-06-13 21:59:41 +00:00
|
|
|
(ignore-errors (when gpm-mouse-mode (require 't-mouse) (gpm-mouse-enable)))
|
2007-05-20 05:46:31 +00:00
|
|
|
|
2005-07-27 18:02:08 +00:00
|
|
|
;; Make Latin-1 input characters work, too.
|
|
|
|
;; Meta will continue to work, because the kernel
|
|
|
|
;; turns that into Escape.
|
1997-11-15 20:52:06 +00:00
|
|
|
|
2005-12-23 03:00:55 +00:00
|
|
|
;; The arg only matters in that it is not t or nil.
|
|
|
|
(set-input-meta-mode 'iso-latin-1))
|
2001-07-15 19:53:53 +00:00
|
|
|
|
2008-04-10 14:10:46 +00:00
|
|
|
;; arch-tag: 5d0c4f63-739b-4862-abf3-041fe42adb8f
|
2001-07-15 19:53:53 +00:00
|
|
|
;;; linux.el ends here
|