1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-21 10:24:55 +00:00
emacs/lisp/term/cygwin.el

10 lines
236 B
EmacsLisp
Raw Normal View History

;;; cygwin.el --- support for the Cygwin terminal
;;; The Cygwin terminal can't really display underlines.
(defun terminal-init-cygwin ()
"Terminal initialization function for cygwin."
(tty-no-underline))
;;; cygwin.el ends here