mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-06 03:40:56 -08:00
* lisp/faces.el (tty-create-frame-with-faces): Set up faces and background mode only after the terminal has been initialized. (frame-set-background-mode): Handle the 'background-mode terminal parameter. (tty-run-terminal-initialization): Add type option. * lisp/term/README: Update. * lisp/term/rxvt.el: Simplify. * lisp/term/xterm.el: Simplify and fix. * lisp/term/*.el: Simplify and fix. git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-564
9 lines
327 B
EmacsLisp
9 lines
327 B
EmacsLisp
;; -*- no-byte-compile: t -*-
|
|
(defun terminal-init-vt320 ()
|
|
"Terminal initialization function for vt320."
|
|
(tty-run-terminal-initialization (selected-frame) "vt100")
|
|
;; Make F11 an escape key.
|
|
(define-key local-function-key-map "\e[23~" [?\e]))
|
|
|
|
;;; arch-tag: f9f4c954-0b9e-45f9-b450-a320d32abd9c
|
|
;;; vt320.el ends here
|