mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-05 22:20:24 -08:00
11 lines
319 B
EmacsLisp
11 lines
319 B
EmacsLisp
;; -*- 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
|