blob: d69433a77c2b8c267cf0ca80dcf13fd11e1ee746 (
plain)
1
2
3
4
5
6
7
8
9
|
;;; 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
|