summaryrefslogtreecommitdiff
path: root/lisp/term/screen.el
blob: 3587c4f95e5850ec5d22889964a09f2aeadd0268 (plain)
1
2
3
4
5
6
7
8
9
;;; screen.el --- terminal initialization for screen and tmux  -*- lexical-binding: t -*-
;; Copyright (C) 1995, 2001-2015 Free Software Foundation, Inc.

(defun terminal-init-screen ()
  "Terminal initialization function for screen."
  ;; Treat a screen terminal similar to an xterm.
  (tty-run-terminal-initialization (selected-frame) "xterm"))

;; screen.el ends here