diff options
author | Stefan Kangas <stefankangas@gmail.com> | 2019-10-03 02:46:44 +0200 |
---|---|---|
committer | Stefan Kangas <stefankangas@gmail.com> | 2020-08-10 14:29:57 +0200 |
commit | c669afcd1cf3990cadbff7319c2e30b72996cdda (patch) | |
tree | 0542d9865b28bf8134db263a78157692ca154d75 /lisp/term | |
parent | aaa7ce585e2a65f3263a655bf52d04d38530279c (diff) | |
download | emacs-c669afcd1cf3990cadbff7319c2e30b72996cdda.tar.gz |
Add term/st.el (Bug#33182)
This is a copy of term/konsole.el with konsole -> st.
* lisp/term/st.el: New file.
Diffstat (limited to 'lisp/term')
-rw-r--r-- | lisp/term/st.el | 12 |
1 files changed, 12 insertions, 0 deletions
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 |