Mercurial > emacs
annotate lisp/term/vt420.el @ 83366:5a8e49e5b281
Fix bootstrap error.
* lisp/cus-start.el: Remove bogus window-system reference from GTK test.
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-406
author | Karoly Lorentey <lorentey@elte.hu> |
---|---|
date | Sat, 10 Sep 2005 23:00:15 +0000 |
parents | 532e0a9335a9 |
children | 7d093d9d4479 |
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 -*- |
83353
532e0a9335a9
Merged in changes from CVS trunk. Plus added lisp/term tweaks.
Karoly Lorentey <lorentey@elte.hu>
diff
changeset
|
2 (defun terminal-init-vt420 |
532e0a9335a9
Merged in changes from CVS trunk. Plus added lisp/term tweaks.
Karoly Lorentey <lorentey@elte.hu>
diff
changeset
|
3 "Terminal initialization function for vt420." |
532e0a9335a9
Merged in changes from CVS trunk. Plus added lisp/term tweaks.
Karoly Lorentey <lorentey@elte.hu>
diff
changeset
|
4 (terminal-init-vt100) |
64651
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
52401
diff
changeset
|
5 ;; Make F11 an escape key. |
83353
532e0a9335a9
Merged in changes from CVS trunk. Plus added lisp/term tweaks.
Karoly Lorentey <lorentey@elte.hu>
diff
changeset
|
6 (define-key (terminal-local-value 'local-function-key-map nil) "\e[23~" [?\e])) |
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
25841
diff
changeset
|
7 |
52401 | 8 ;;; arch-tag: df2f897c-3a12-4b3c-9259-df089f96c160 |
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
25841
diff
changeset
|
9 ;;; vt420.el ends here |