emacs/lisp/term/screen.el

10 lines
371 B
EmacsLisp
Raw Normal View History

;;; screen.el --- terminal initialization for screen and tmux -*- lexical-binding: t -*-
;; Copyright (C) 1995, 2001-2015 Free Software Foundation, Inc.
2011-02-27 16:26:22 -05:00
(defun terminal-init-screen ()
"Terminal initialization function for screen."
;; Treat a screen terminal similar to an xterm.
(tty-run-terminal-initialization (selected-frame) "xterm"))
2011-02-27 16:26:22 -05:00
;; screen.el ends here