summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Kangas <stefankangas@gmail.com>2019-10-03 02:46:44 +0200
committerStefan Kangas <stefankangas@gmail.com>2020-08-10 14:29:57 +0200
commitc669afcd1cf3990cadbff7319c2e30b72996cdda (patch)
tree0542d9865b28bf8134db263a78157692ca154d75
parentaaa7ce585e2a65f3263a655bf52d04d38530279c (diff)
downloademacs-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.
-rw-r--r--lisp/term/st.el12
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