* lisp/url/url-handlers.el (url-http-parse-response): Remove unused autoload.
[bpt/emacs.git] / lisp / term / vt240.el
CommitLineData
1bf41cb0
RS
1;; For our purposes we can treat the vt200 and vt100 almost alike.
2;; Most differences are handled by the termcap entry.
4f0c9ba7 3(defun terminal-init-vt240 ()
fbf34973 4 "Terminal initialization function for vt240."
8cbd7bed 5 (tty-run-terminal-initialization (selected-frame) "vt100")
4f0c9ba7 6 ;; Make F11 an escape key.
4cbe2739
SM
7 (define-key input-decode-map "\e[23~" [f11]) ;Probably redundant.
8 (define-key local-function-key-map [f11] [?\e]))
60370d40
PJ
9
10;;; vt240.el ends here