diff options
author | Andreas Schwab <schwab@suse.de> | 2017-08-17 11:13:04 +0200 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 2017-08-17 11:14:07 +0200 |
commit | 10a5a52f1d3d58297d926dc0b1f20bc0e423e408 (patch) | |
tree | 971b0670f805096a369c74c357cdac8f29830941 /lisp/term/konsole.el | |
parent | 3f938e1aea7e592de8c3ddb87508bf9d6ed8b3b5 (diff) | |
download | emacs-10a5a52f1d3d58297d926dc0b1f20bc0e423e408.tar.gz emacs-10a5a52f1d3d58297d926dc0b1f20bc0e423e408.tar.bz2 emacs-10a5a52f1d3d58297d926dc0b1f20bc0e423e408.zip |
* lisp/term/konsole.el: New file.
Diffstat (limited to 'lisp/term/konsole.el')
-rw-r--r-- | lisp/term/konsole.el | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lisp/term/konsole.el b/lisp/term/konsole.el new file mode 100644 index 00000000000..45c701f33bc --- /dev/null +++ b/lisp/term/konsole.el @@ -0,0 +1,12 @@ +;;; konsole.el --- terminal initialization for konsole +;; Copyright (C) 2017 Free Software Foundation, Inc. + +(require 'term/xterm) + +(defun terminal-init-konsole () + "Terminal initialization function for konsole." + (tty-run-terminal-initialization (selected-frame) "xterm")) + +(provide 'term/konsole) + +;; konsole.el ends here |