Update copyright year to 2014 by running admin/update-copyright.
[emacs.git] / lisp / term / vt400.el
blobad4a5fdbb4f7aec23d5929fd013137f6236bed3d
1 (defun terminal-init-vt400 ()
2 "Terminal initialization function for vt400."
3 (tty-run-terminal-initialization (selected-frame) "vt100")
4 ;; Make F11 an escape key.
5 (define-key input-decode-map "\e[23~" [f11]) ;Probably redundant.
6 (define-key local-function-key-map [f11] [?\e]))
8 ;;; vt400.el ends here