Mercurial > emacs
view lisp/term/vt240.el @ 83388:0cd72d94a6c7
Change the "pretest" bug report address to the multi-tty list.
* src/emacs.c (REPORT_EMACS_BUG_PRETEST_ADDRESS): Change address to the
multi-tty mailing list.
* lisp/mh-e/.arch-inventory: Ignore mh-loaddefs.el.
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-428
author | Karoly Lorentey <lorentey@elte.hu> |
---|---|
date | Sun, 23 Oct 2005 22:17:49 +0000 |
parents | 532e0a9335a9 |
children | 7d093d9d4479 |
line wrap: on
line source
;; -*- no-byte-compile: t -*- ;; For our purposes we can treat the vt200 and vt100 almost alike. ;; Most differences are handled by the termcap entry. (defun terminal-init-vt240 () "Terminal initialization function for vt240." (terminal-init-vt100) ;; Make F11 an escape key. (define-key (terminal-local-value 'local-function-key-map nil) "\e[23~" [?\e])) ;;; arch-tag: d9f88e9c-02dc-49ff-871c-a415f08e4eb7 ;;; vt240.el ends here