summaryrefslogtreecommitdiff
path: root/lisp/term/cygwin.el
blob: 8f0d751cf29e13676b757b1308499ab58fc43d2b (plain)
1
2
3
4
5
6
7
8
9
10
11
;;; 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