2020-05-02 22:50:14 +02:00
|
|
|
;;; cygwin.el --- support for the Cygwin terminal -*- lexical-binding:t -*-
|
2005-07-22 17:11:04 +00:00
|
|
|
|
|
|
|
;;; The Cygwin terminal can't really display underlines.
|
2005-07-27 18:02:08 +00:00
|
|
|
|
|
|
|
(defun terminal-init-cygwin ()
|
2006-05-20 17:02:47 +00:00
|
|
|
"Terminal initialization function for cygwin."
|
2005-07-27 18:02:08 +00:00
|
|
|
(tty-no-underline))
|
2005-07-22 17:11:04 +00:00
|
|
|
|
Provide 'term/name in lisp/term files.
* 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.
2016-02-15 21:59:40 -08:00
|
|
|
(provide 'term/cygwin)
|
|
|
|
|
2005-07-22 17:11:04 +00:00
|
|
|
;;; cygwin.el ends here
|