From: Stefan Kangas Date: Thu, 3 Oct 2019 00:46:44 +0000 (+0200) Subject: Add term/st.el (Bug#33182) X-Git-Tag: emacs-28.0.90~6712 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c669afcd1cf3990cadbff7319c2e30b72996cdda;p=emacs.git Add term/st.el (Bug#33182) This is a copy of term/konsole.el with konsole -> st. * lisp/term/st.el: New file. --- diff --git a/lisp/term/st.el b/lisp/term/st.el new file mode 100644 index 00000000000..3a15576ecc6 --- /dev/null +++ b/lisp/term/st.el @@ -0,0 +1,12 @@ +;;; st.el --- terminal initialization for st -*- lexical-binding:t -*- +;; Copyright (C) 2020 Free Software Foundation, Inc. + +(require 'term/xterm) + +(defun terminal-init-st () + "Terminal initialization function for st." + (tty-run-terminal-initialization (selected-frame) "xterm")) + +(provide 'term/st) + +;; st.el ends here