aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/term/screen.el
blob: d37a695086ad1d717d2b3112dfb119a689abde34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
;; Treat a screen terminal similar to an xterm.
(load "term/xterm")

(declare-function xterm-register-default-colors "xterm" ())

(defun terminal-init-screen ()
  "Terminal initialization function for screen."
  ;; Use the xterm color initialization code.
  (xterm-register-default-colors)
  (tty-set-up-initial-frame-faces))

;; screen.el ends here