diff options
author | Andrea Corallo <akrl@sdf.org> | 2020-08-13 12:22:07 +0200 |
---|---|---|
committer | Andrea Corallo <akrl@sdf.org> | 2020-08-13 12:22:07 +0200 |
commit | 46e7613ad3b88807d25cfab3d78bf46c9e2fe13e (patch) | |
tree | a7b560c36e097660536697c9d0057c9273d779b2 /lisp/term | |
parent | f6502f959253b8f705e324e137c2933c5a668f62 (diff) | |
parent | e9eafd22681b8e95d8d642def0512d9290564206 (diff) | |
download | emacs-46e7613ad3b88807d25cfab3d78bf46c9e2fe13e.tar.gz |
Merge remote-tracking branch 'savannah/master' into HEAD
Diffstat (limited to 'lisp/term')
-rw-r--r-- | lisp/term/st.el | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/lisp/term/st.el b/lisp/term/st.el new file mode 100644 index 00000000000..617664bb263 --- /dev/null +++ b/lisp/term/st.el @@ -0,0 +1,20 @@ +;;; st.el --- terminal initialization for st -*- lexical-binding:t -*- + +;; Copyright (C) 2020 Free Software Foundation, Inc. + +;;; Commentary: + +;; Support for the st terminal emulator. +;; https://st.suckless.org/ + +;;; Code: + +(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 |