aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/term/vt320.el
blob: 08ed9a8ffb98ede008b2e295f303fa3b408c3f83 (plain)
1
2
3
4
5
6
7
8
(defun terminal-init-vt320 ()
  "Terminal initialization function for vt320."
  (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]))

;;; vt320.el ends here