diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-06-20 08:49:42 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-06-20 08:49:42 +0000 |
commit | ed8d30ae815616cd8edae3eb44488d281e57bd3f (patch) | |
tree | d2dd6abb9674bf00456544402da7ade3eb269386 /lisp/term/vt200.el | |
parent | 7c92db56e023d20be00bb60a4d0e5814e9f334d7 (diff) | |
download | emacs-ed8d30ae815616cd8edae3eb44488d281e57bd3f.tar.gz |
Translate F11 (ESC [ 23 ~) to ESC.
Diffstat (limited to 'lisp/term/vt200.el')
-rw-r--r-- | lisp/term/vt200.el | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lisp/term/vt200.el b/lisp/term/vt200.el index 8ed3ee74cc5..31f64a0f8b2 100644 --- a/lisp/term/vt200.el +++ b/lisp/term/vt200.el @@ -1,3 +1,6 @@ -;; For our purposes we can treat the vt200 and vt100 alike. -;; The differences are handled by the termcap entry. +;; For our purposes we can treat the vt200 and vt100 almost alike. +;; Most differences are handled by the termcap entry. (load "term/vt100" nil t) + +;; Make F11 an escape key. +(define-key function-key-map "\e[23~" [?\e]) |