diff options
| author | Prestoo Ten | 2011-02-27 16:26:22 -0500 |
|---|---|---|
| committer | Chong Yidong | 2011-02-27 16:26:22 -0500 |
| commit | 6c89f663ba51640d75837060be32befdce7d7e6d (patch) | |
| tree | 45e38da51751adda41c5679e57287f6d66e6059c /lisp/term | |
| parent | f9fa9e49324d941f2200dc3a1607060ca66f4cec (diff) | |
| download | emacs-6c89f663ba51640d75837060be32befdce7d7e6d.tar.gz emacs-6c89f663ba51640d75837060be32befdce7d7e6d.zip | |
* term/screen.el: New file (Bug#2650).
Diffstat (limited to 'lisp/term')
| -rw-r--r-- | lisp/term/screen.el | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lisp/term/screen.el b/lisp/term/screen.el new file mode 100644 index 00000000000..4931a422e09 --- /dev/null +++ b/lisp/term/screen.el | |||
| @@ -0,0 +1,11 @@ | |||
| 1 | ;; -*- no-byte-compile: t -*- | ||
| 2 | ;; Treat a screen terminal similar to an xterm. | ||
| 3 | (load "term/xterm") | ||
| 4 | |||
| 5 | (defun terminal-init-screen () | ||
| 6 | "Terminal initialization function for screen." | ||
| 7 | ;; Use the xterm color initialization code. | ||
| 8 | (xterm-register-default-colors) | ||
| 9 | (tty-set-up-initial-frame-faces)) | ||
| 10 | |||
| 11 | ;; screen.el ends here | ||