mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-03 08:30:09 +00:00
26bed8ba10
Run 'TZ=UTC0 admin/update-copyright $(git ls-files)'.
13 lines
331 B
EmacsLisp
13 lines
331 B
EmacsLisp
;;; konsole.el --- terminal initialization for konsole
|
|
;; Copyright (C) 2017-2019 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
|