blob: edc64b4404d552c7e257a773e75656f25ecb7681 (
plain)
1
2
3
4
5
6
7
8
9
10
11
  | 
;;; 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))
(provide 'term/cygwin)
;;; cygwin.el ends here
  |