Mercurial > emacs
view lisp/term/vt240.el @ 83465:3ec9cf0f2305
Fix bootstrapping problem. (Reported by "mace".)
* lisp/loadup.el: Delay loading env; mule-conf gets confused by cl during
bootstrap.
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-505
author | Karoly Lorentey <lorentey@elte.hu> |
---|---|
date | Fri, 03 Feb 2006 14:44:51 +0000 |
parents | 7d093d9d4479 |
children | 673d62ad74b5 |
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 local-function-key-map "\e[23~" [?\e])) ;;; arch-tag: d9f88e9c-02dc-49ff-871c-a415f08e4eb7 ;;; vt240.el ends here