cygwin.el 263 B

12345678910
  1. ;;; cygwin.el --- support for the Cygwin terminal -*- no-byte-compile: t -*-
  2. ;;; The Cygwin terminal can't really display underlines.
  3. (defun terminal-init-cygwin ()
  4. "Terminal initialization function for cygwin."
  5. (tty-no-underline))
  6. ;;; cygwin.el ends here