blob: 4931a422e0971e5f3aaf9c5d0804402067355c35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
;; -*- no-byte-compile: t -*-
;; Treat a screen terminal similar to an xterm.
(load "term/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
|