1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-14 09:39:42 +00:00

Add term/st.el (Bug#33182)

This is a copy of term/konsole.el with konsole -> st.
* lisp/term/st.el: New file.
This commit is contained in:
Stefan Kangas 2019-10-03 02:46:44 +02:00
parent aaa7ce585e
commit c669afcd1c

12
lisp/term/st.el Normal file
View File

@ -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