Mercurial > emacs
annotate lisp/term/linux.el @ 106797:2fb043738725
(imenu-default-create-index-function): Detect infinite
loops caused by imenu-prev-index-position-function.
author | Sam Steingold <sds@gnu.org> |
---|---|
date | Mon, 11 Jan 2010 15:57:28 -0500 |
parents | a69758a613b9 |
children | ef719132ddfa |
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 | 2 ;; The Linux console handles Latin-1 by default. |
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 () |
95628
8bb6e8177f61
(terminal-init-linux): Use gpm-mouse-mode rather than obsolete alias.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
5 "Terminal initialization function for linux." |
64651
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 | 11 |
95908
a69758a613b9
(terminal-init-linux): Load t-mouse.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
95807
diff
changeset
|
12 (ignore-errors (when gpm-mouse-mode (require 't-mouse) (gpm-mouse-enable))) |
80999
315ae0b59970
(terminal-init-linux): Enable t-mouse by default.
Nick Roberts <nickrob@snap.net.nz>
parents:
64651
diff
changeset
|
13 |
64651
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
63552
diff
changeset
|
14 ;; 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
|
15 ;; 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
|
16 ;; 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
|
17 |
83417
fe870a866ce7
Don't let x_initialize break 8-bit input on ttys. (Reported by Joakim Verona.) Split `set-input-mode'.
Karoly Lorentey <lorentey@elte.hu>
parents:
64651
diff
changeset
|
18 ;; The arg only matters in that it is not t or nil. |
fe870a866ce7
Don't let x_initialize break 8-bit input on ttys. (Reported by Joakim Verona.) Split `set-input-mode'.
Karoly Lorentey <lorentey@elte.hu>
parents:
64651
diff
changeset
|
19 (set-input-meta-mode 'iso-latin-1)) |
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
20469
diff
changeset
|
20 |
93975
1e3a407766b9
Fix up comment convention on the arch-tag lines.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
83622
diff
changeset
|
21 ;; 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
|
22 ;;; linux.el ends here |