Mercurial > emacs
annotate lisp/term/linux.el @ 64436:8c591f014cf5
(isearch-mode-map): Remove key bindings for regexp chars * ? } |.
(isearch-fallback): Don't call `isearch-process-search-char'.
(isearch-*-char, isearch-}-char, isearch-|-char): Remove functions.
(isearch-process-search-char): Call `isearch-fallback' for regexp chars * ? } |.
(isearch-return-char): Make obsolete with `make-obsolete' instead
of simply documenting it as obsolete in the docstring.
(isearch-fallback): Refill docstring.
author | Juri Linkov <juri@jurta.org> |
---|---|
date | Mon, 18 Jul 2005 14:32:30 +0000 |
parents | 41c37d195015 |
children | af1c58687bdd b7da78284d4c |
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 | |
20469
2253ec0e71ca
Don't call set-terminal-coding-system
Karl Heuer <kwzh@gnu.org>
parents:
20260
diff
changeset
|
4 (unless (terminal-coding-system) |
2253ec0e71ca
Don't call set-terminal-coding-system
Karl Heuer <kwzh@gnu.org>
parents:
20260
diff
changeset
|
5 (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
|
6 |
63552 | 7 ;; It can't really display underlines. |
8 (tty-no-underline) | |
9 | |
20260
0d9e271f24ee
Use set-input-mode to make Latin-1 chars work.
Karl Heuer <kwzh@gnu.org>
parents:
18616
diff
changeset
|
10 ;; Make Latin-1 input characters work, too. |
0d9e271f24ee
Use set-input-mode to make Latin-1 chars work.
Karl Heuer <kwzh@gnu.org>
parents:
18616
diff
changeset
|
11 ;; Meta will continue to work, because the kernel |
0d9e271f24ee
Use set-input-mode to make Latin-1 chars work.
Karl Heuer <kwzh@gnu.org>
parents:
18616
diff
changeset
|
12 ;; turns that into Escape. |
0d9e271f24ee
Use set-input-mode to make Latin-1 chars work.
Karl Heuer <kwzh@gnu.org>
parents:
18616
diff
changeset
|
13 |
0d9e271f24ee
Use set-input-mode to make Latin-1 chars work.
Karl Heuer <kwzh@gnu.org>
parents:
18616
diff
changeset
|
14 (let ((value (current-input-mode))) |
0d9e271f24ee
Use set-input-mode to make Latin-1 chars work.
Karl Heuer <kwzh@gnu.org>
parents:
18616
diff
changeset
|
15 ;; The third arg only matters in that it is not t or nil. |
0d9e271f24ee
Use set-input-mode to make Latin-1 chars work.
Karl Heuer <kwzh@gnu.org>
parents:
18616
diff
changeset
|
16 (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
|
17 |
52401 | 18 ;;; 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
|
19 ;;; linux.el ends here |