File: screen.el

package info (click to toggle)
emacs24 24.4%2B1-5
  • links: PTS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 117,404 kB
  • sloc: lisp: 1,073,087; ansic: 272,934; objc: 15,085; makefile: 5,480; sh: 2,257; perl: 1,319; xml: 1,110; pascal: 1,011; cs: 770; cpp: 528; awk: 477; ruby: 290; java: 27
file content (12 lines) | stat: -rw-r--r-- 350 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
;; Treat a screen terminal similar to an xterm.
(load "term/xterm")

(declare-function xterm-register-default-colors "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