mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-26 07:33:47 +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.
12 lines
287 B
EmacsLisp
12 lines
287 B
EmacsLisp
;;; cygwin.el --- support for the Cygwin terminal -*- lexical-binding:t -*-
|
|
|
|
;;; The Cygwin terminal can't really display underlines.
|
|
|
|
(defun terminal-init-cygwin ()
|
|
"Terminal initialization function for cygwin."
|
|
(tty-no-underline))
|
|
|
|
(provide 'term/cygwin)
|
|
|
|
;;; cygwin.el ends here
|