diff options
Diffstat (limited to 'lisp/term/vt420.el')
-rw-r--r-- | lisp/term/vt420.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/term/vt420.el b/lisp/term/vt420.el index 65ffa759c17..4d3206cbca1 100644 --- a/lisp/term/vt420.el +++ b/lisp/term/vt420.el @@ -1,9 +1,9 @@ ;; -*- no-byte-compile: t -*- -(defun terminal-init-vt420 () - "Terminal initialization function for vt420." - (load "term/vt100" nil t) +(defun terminal-init-vt420 + "Terminal initialization function for vt420." + (terminal-init-vt100) ;; Make F11 an escape key. - (define-key function-key-map "\e[23~" [?\e])) + (define-key local-function-key-map "\e[23~" [?\e])) ;;; arch-tag: df2f897c-3a12-4b3c-9259-df089f96c160 ;;; vt420.el ends here |