summaryrefslogtreecommitdiff
path: root/lisp/term/vt400.el
blob: 4c5870c5ad88eb9ddb6f70eba29c40e96ee62296 (plain)
1
2
3
4
5
6
7
8
9
;; -*- no-byte-compile: t -*-
(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