annotate lisp/term/linux.el @ 82318:7bec7031afab

Minor cleanup.
author Chong Yidong <cyd@stupidchicken.com>
date Tue, 07 Aug 2007 16:25:26 +0000
parents 6d4bdea33da9
children 0a3247aa24a4 31beec9ee600
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
47726
33d53d287ee4 Add "no-byte-compile: t" in first line.
Juanma Barranquero <lekktu@gmail.com>
parents: 38414
diff changeset
1 ;; -*- no-byte-compile: t -*-
18616
8d93d6d7eb23 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2 ;; The Linux console handles Latin-1 by default.
8d93d6d7eb23 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
3
64651
af1c58687bdd * term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents: 63552
diff changeset
4 (defun terminal-init-linux ()
af1c58687bdd * term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents: 63552
diff changeset
5 "Terminal initialization function for linux."
af1c58687bdd * term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents: 63552
diff changeset
6 (unless (terminal-coding-system)
af1c58687bdd * term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents: 63552
diff changeset
7 (set-terminal-coding-system 'iso-latin-1))
20260
0d9e271f24ee Use set-input-mode to make Latin-1 chars work.
Karl Heuer <kwzh@gnu.org>
parents: 18616
diff changeset
8
64651
af1c58687bdd * term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents: 63552
diff changeset
9 ;; It can't really display underlines.
af1c58687bdd * term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents: 63552
diff changeset
10 (tty-no-underline)
63552
41c37d195015 Call tty-no-underline.
Richard M. Stallman <rms@gnu.org>
parents: 52401
diff changeset
11
81005
6d4bdea33da9 (terminal-init-linux): Don't signal an error
Nick Roberts <nickrob@snap.net.nz>
parents: 80999
diff changeset
12 (condition-case nil (t-mouse-mode 1)
6d4bdea33da9 (terminal-init-linux): Don't signal an error
Nick Roberts <nickrob@snap.net.nz>
parents: 80999
diff changeset
13 (error nil))
80999
315ae0b59970 (terminal-init-linux): Enable t-mouse by default.
Nick Roberts <nickrob@snap.net.nz>
parents: 64651
diff changeset
14
64651
af1c58687bdd * term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents: 63552
diff changeset
15 ;; Make Latin-1 input characters work, too.
af1c58687bdd * term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents: 63552
diff changeset
16 ;; Meta will continue to work, because the kernel
af1c58687bdd * term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents: 63552
diff changeset
17 ;; turns that into Escape.
20260
0d9e271f24ee Use set-input-mode to make Latin-1 chars work.
Karl Heuer <kwzh@gnu.org>
parents: 18616
diff changeset
18
64651
af1c58687bdd * term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents: 63552
diff changeset
19 (let ((value (current-input-mode)))
af1c58687bdd * term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents: 63552
diff changeset
20 ;; The third arg only matters in that it is not t or nil.
af1c58687bdd * term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents: 63552
diff changeset
21 (set-input-mode (nth 0 value) (nth 1 value) 'iso-latin-1 (nth 3 value))))
38414
67b464da13ec Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents: 20469
diff changeset
22
52401
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 47726
diff changeset
23 ;;; arch-tag: 5d0c4f63-739b-4862-abf3-041fe42adb8f
38414
67b464da13ec Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents: 20469
diff changeset
24 ;;; linux.el ends here