# HG changeset patch # User Richard M. Stallman # Date 740302276 0 # Node ID 8ba66a5642139d2d893821e0808e72fcc7e085f7 # Parent d43666cf0dbba9a85994559554802df642277abd entered into RCS diff -r d43666cf0dbb -r 8ba66a564213 lisp/term/vt201.el --- a/lisp/term/vt201.el Thu Jun 17 07:03:08 1993 +0000 +++ b/lisp/term/vt201.el Thu Jun 17 07:31:16 1993 +0000 @@ -1,1 +1,7 @@ +;; 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]) + diff -r d43666cf0dbb -r 8ba66a564213 lisp/term/vt220.el --- a/lisp/term/vt220.el Thu Jun 17 07:03:08 1993 +0000 +++ b/lisp/term/vt220.el Thu Jun 17 07:31:16 1993 +0000 @@ -1,1 +1,7 @@ +;; 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]) + diff -r d43666cf0dbb -r 8ba66a564213 lisp/term/vt240.el --- a/lisp/term/vt240.el Thu Jun 17 07:03:08 1993 +0000 +++ b/lisp/term/vt240.el Thu Jun 17 07:31:16 1993 +0000 @@ -1,1 +1,6 @@ +;; 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])