mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-15 09:47:20 +00:00
4be16866b9
This takes care of the most trivial cases, but there are more that could be easily converted. * lisp/term/bobcat.el: * lisp/term/cygwin.el: * lisp/term/konsole.el: * lisp/term/linux.el: * lisp/term/vt100.el: * lisp/term/vt200.el: Use lexical-binding.
13 lines
358 B
EmacsLisp
13 lines
358 B
EmacsLisp
;;; konsole.el --- terminal initialization for konsole -*- lexical-binding:t -*-
|
|
;; Copyright (C) 2017-2020 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
|