Mercurial > emacs
annotate lisp/term/linux.el @ 88194:1f1ae6ac5610
(rmail-process-new-messages): Add an X-Coding-System header if one
doesn't exist.
author | Henrik Enberg <henrik.enberg@telia.com> |
---|---|
date | Tue, 17 Jan 2006 22:31:38 +0000 |
parents | d7ddb3e565de |
children |
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 | |
88155 | 4 (defun terminal-init-linux () |
5 "Terminal initialization function for linux." | |
6 (unless (terminal-coding-system) | |
7 (set-terminal-coding-system 'iso-latin-1)) | |
8 | |
9 ;; It can't really display underlines. | |
10 (tty-no-underline) | |
20260
0d9e271f24ee
Use set-input-mode to make Latin-1 chars work.
Karl Heuer <kwzh@gnu.org>
parents:
18616
diff
changeset
|
11 |
88155 | 12 ;; Make Latin-1 input characters work, too. |
13 ;; Meta will continue to work, because the kernel | |
14 ;; 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
|
15 |
88155 | 16 (let ((value (current-input-mode))) |
17 ;; The third arg only matters in that it is not t or nil. | |
18 (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
|
19 |
88155 | 20 ;;; 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
|
21 ;;; linux.el ends here |