aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/term/vt400.el
blob: ad4a5fdbb4f7aec23d5929fd013137f6236bed3d (plain)
1
2
3
4
5
6
7
8
(defun terminal-init-vt400 ()
  "Terminal initialization function for vt400."
  (tty-run-terminal-initialization (selected-frame) "vt100")
  ;; Make F11 an escape key.
  (define-key input-decode-map "\e[23~" [f11]) ;Probably redundant.
  (define-key local-function-key-map [f11] [?\e]))

;;; vt400.el ends here