Mercurial > emacs
annotate lisp/term/vt201.el @ 88250:61c503e4cee5
(rmail-require-mime-maybe): Simplified.
(rmail-mode-map): Rewritten using a local binding to agree
with "(elisp)Tips for Defining".
author | Alex Schroeder <alex@gnu.org> |
---|---|
date | Sat, 21 Jan 2006 01:30:30 +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 -*- |
3807 | 2 ;; For our purposes we can treat the vt200 and vt100 almost alike. |
3 ;; Most differences are handled by the termcap entry. | |
88155 | 4 (defun terminal-init-vt201 () |
5 "Terminal initialization function for vt201." | |
6 (load "term/vt100" nil t) | |
7 ;; Make F11 an escape key. | |
8 (define-key function-key-map "\e[23~" [?\e])) | |
3807 | 9 |
88155 | 10 ;;; arch-tag: a6abb38f-60ea-449e-a9e9-3fb8572c52ae |
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
3807
diff
changeset
|
11 ;;; vt201.el ends here |