aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/term/vt300.el
diff options
context:
space:
mode:
authorKaroly Lorentey <[email protected]>2006-05-20 17:02:47 +0000
committerKaroly Lorentey <[email protected]>2006-05-20 17:02:47 +0000
commit8cbd7bed2db718a63ed37182c566f9e059925c71 (patch)
treeb8905d6abc17f84a33d1f80f35a0b87f69819da9 /lisp/term/vt300.el
parentb34c34dae08d94ca9ab0cd50cb53f0ab0cd21491 (diff)
Fix and/or simplify terminal initialization files.
* 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: [email protected]/emacs--multi-tty--0--patch-564
Diffstat (limited to 'lisp/term/vt300.el')
-rw-r--r--lisp/term/vt300.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/term/vt300.el b/lisp/term/vt300.el
index fb749277d5..9a09ad5e8c 100644
--- a/lisp/term/vt300.el
+++ b/lisp/term/vt300.el
@@ -1,7 +1,7 @@
;; -*- no-byte-compile: t -*-
(defun terminal-init-vt300 ()
"Terminal initialization function for vt300."
- (terminal-init-vt100)
+ (tty-run-terminal-initialization (selected-frame) "vt100")
;; Make F11 an escape key.
(define-key local-function-key-map "\e[23~" [?\e]))