# HG changeset patch # User Richard M. Stallman # Date 740566182 0 # Node ID 73eb72de291d64df31c69553047723378749a44a # Parent a58e981e2582dc679f21fc783ade16a5e2aa1e61 Translate F11 (ESC [ 23 ~) to ESC. diff -r a58e981e2582 -r 73eb72de291d lisp/term/vt200.el --- a/lisp/term/vt200.el Sun Jun 20 08:48:58 1993 +0000 +++ b/lisp/term/vt200.el Sun Jun 20 08:49:42 1993 +0000 @@ -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])