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