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

;;; vt300.el ends here