mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-27 07:37:33 +00:00
d5e827929c
* lisp/term/AT386.el, lisp/term/bobcat.el, lisp/term/cygwin.el: * lisp/term/internal.el, lisp/term/iris-ansi.el, lisp/term/linux.el: * lisp/term/lk201.el, lisp/term/news.el, lisp/term/ns-win.el: * lisp/term/pc-win.el, lisp/term/rxvt.el, lisp/term/screen.el: * lisp/term/sun.el, lisp/term/tty-colors.el, lisp/term/tvi970.el: * lisp/term/vt100.el, lisp/term/vt200.el, lisp/term/w32-win.el: * lisp/term/w32console.el, lisp/term/wyse50.el, lisp/term/x-win.el: For consistency, provide 'term/name in all files that don't already.
12 lines
260 B
EmacsLisp
12 lines
260 B
EmacsLisp
;;; 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
|