X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/e31331e5cb40d3e56e4160229b33f2dad9d5e4ab..68e7476278a3dc4bd13dab63cc23bc0e671e5525:/lisp/term/vt320.el diff --git a/lisp/term/vt320.el b/lisp/term/vt320.el index 3e52d27193..1d36c9d933 100644 --- a/lisp/term/vt320.el +++ b/lisp/term/vt320.el @@ -1,9 +1,10 @@ ;; -*- no-byte-compile: t -*- (defun terminal-init-vt320 () "Terminal initialization function for vt320." - (terminal-init-vt100) + (tty-run-terminal-initialization (selected-frame) "vt100") ;; Make F11 an escape key. - (define-key local-function-key-map "\e[23~" [?\e])) + (define-key input-decode-map "\e[23~" [f11]) ;Probably redundant. + (define-key local-function-key-map [f11] [?\e])) -;;; arch-tag: f9f4c954-0b9e-45f9-b450-a320d32abd9c +;; arch-tag: f9f4c954-0b9e-45f9-b450-a320d32abd9c ;;; vt320.el ends here