Mercurial > emacs
view lisp/term/vt201.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 |
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-vt201 () "Terminal initialization function for vt201." (terminal-init-vt100) ;; Make F11 an escape key. (define-key (terminal-local-value 'local-function-key-map nil) "\e[23~" [?\e])) ;;; arch-tag: a6abb38f-60ea-449e-a9e9-3fb8572c52ae ;;; vt201.el ends here