strftime: import from gnulib
[emacs.git] / lisp / term / vt400.el
blob4c5870c5ad88eb9ddb6f70eba29c40e96ee62296
1 ;; -*- no-byte-compile: t -*-
2 (defun terminal-init-vt400 ()
3 "Terminal initialization function for vt400."
4 (tty-run-terminal-initialization (selected-frame) "vt100")
5 ;; Make F11 an escape key.
6 (define-key input-decode-map "\e[23~" [f11]) ;Probably redundant.
7 (define-key local-function-key-map [f11] [?\e]))
9 ;;; vt400.el ends here