mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-30 08:09:04 +00:00
10 lines
263 B
EmacsLisp
10 lines
263 B
EmacsLisp
;;; cygwin.el --- support for the Cygwin terminal -*- no-byte-compile: t -*-
|
|
|
|
;;; The Cygwin terminal can't really display underlines.
|
|
|
|
(defun terminal-init-cygwin ()
|
|
"Terminal initialization function for cygwin."
|
|
(tty-no-underline))
|
|
|
|
;;; cygwin.el ends here
|