Merge branch 'master' into comment-cache
[emacs.git] / lisp / term / vt200.el
blobdde2e2290684850c863deda021300eb4afaba1e7
1 ;; For our purposes we can treat the vt200 and vt100 almost alike.
2 ;; Most differences are handled by the termcap entry.
3 (defun terminal-init-vt200 ()
4 "Terminal initialization function for vt200."
5 (tty-run-terminal-initialization (selected-frame) "vt100")
6 ;; Make F11 an escape key.
7 (define-key input-decode-map "\e[23~" [f11]) ;Probably redundant.
8 (define-key local-function-key-map [f11] [?\e]))
10 (provide 'term/vt200)
12 ;;; vt200.el ends here