* term/screen.el: New file (Bug#2650).

This commit is contained in:
Prestoo Ten 2011-02-27 16:26:22 -05:00 committed by Chong Yidong
parent f9fa9e4932
commit 6c89f663ba
2 changed files with 15 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2011-02-27 Prestoo Ten <prestooten@gmail.com>
* term/screen.el: New file (Bug#2650).
2011-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
* emacs-lisp/pcase.el (pcase--if): Try to invert test to reduce depth.

11
lisp/term/screen.el Normal file
View file

@ -0,0 +1,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