mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-23 22:20:24 -08:00
* term/screen.el: New file (Bug#2650).
This commit is contained in:
parent
f9fa9e4932
commit
6c89f663ba
2 changed files with 15 additions and 0 deletions
|
|
@ -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>
|
2011-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||||
|
|
||||||
* emacs-lisp/pcase.el (pcase--if): Try to invert test to reduce depth.
|
* emacs-lisp/pcase.el (pcase--if): Try to invert test to reduce depth.
|
||||||
|
|
|
||||||
11
lisp/term/screen.el
Normal file
11
lisp/term/screen.el
Normal 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
|
||||||
Loading…
Add table
Add a link
Reference in a new issue