comparison lisp/term/vt200.el @ 64651:af1c58687bdd

* term/apollo.el (terminal-init-apollo): New function containing all former top level forms in the file. * term/bobcat.el (terminal-init-bobcat): * term/cygwin.el (terminal-init-cygwin): * term/iris-ansi.el (terminal-init-iris-ansi): * term/linux.el (terminal-init-linux): * term/news.el (terminal-init-news): * term/rxvt.el (terminal-init-rxvt): * term/sun.el (terminal-init-sun): * term/tvi970.el (terminal-init-tvi970): * term/vt100.el (terminal-init-vt100): * term/vt102.el (terminal-init-vt102): * term/vt125.el (terminal-init-vt125): * term/vt200.el (terminal-init-vt200): * term/vt201.el (terminal-init-vt201): * term/vt220.el (terminal-init-vt220): * term/vt240.el (terminal-init-vt240): * term/vt300.el (terminal-init-vt300): * term/vt320.el (terminal-init-vt320): * term/vt400.el (terminal-init-vt400): * term/vt420.el (terminal-init-vt420): * term/wyse50.el (terminal-init-wyse50): * term/xterm.el (terminal-init-xterm): Likewise. * term/README: Describe the terminal-init-* functionality. * startup.el (command-line): After loading the terminal initialization file call the corresponding terminal initialization function.
author Dan Nicolaescu <dann@ics.uci.edu>
date Wed, 27 Jul 2005 18:02:08 +0000
parents 695cf19ef79e
children 532e0a9335a9 890cc78a5a24
comparison
equal deleted inserted replaced
64650:82d9ac62ed1d 64651:af1c58687bdd
1 ;; -*- no-byte-compile: t -*- 1 ;; -*- no-byte-compile: t -*-
2 ;; For our purposes we can treat the vt200 and vt100 almost alike. 2 ;; For our purposes we can treat the vt200 and vt100 almost alike.
3 ;; Most differences are handled by the termcap entry. 3 ;; Most differences are handled by the termcap entry.
4 (load "term/vt100" nil t)
5 4
6 ;; Make F11 an escape key. 5 (defun terminal-init-vt200 ()
7 (define-key function-key-map "\e[23~" [?\e]) 6 "Terminal initialization function for vt200."
7 (load "term/vt100" nil t)
8 ;; Make F11 an escape key.
9 (define-key function-key-map "\e[23~" [?\e]))
8 10
9 ;;; arch-tag: 0f78f583-9f32-4237-b106-28bcfff21d89 11 ;;; arch-tag: 0f78f583-9f32-4237-b106-28bcfff21d89
10 ;;; vt200.el ends here 12 ;;; vt200.el ends here