Mercurial > emacs
annotate lisp/term/cygwin.el @ 112163:b30a0deacfdf
New function read-char-choice for reading a restricted set of chars.
* lisp/subr.el (read-char-choice): New function, factored out from
dired-query and hack-local-variables-confirm.
* lisp/dired-aux.el (dired-query):
* lisp/files.el (hack-local-variables-confirm): Use it.
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Sat, 08 Jan 2011 14:17:23 -0500 |
parents | 673d62ad74b5 |
children | ef719132ddfa |
rev | line source |
---|---|
64596
d5254bde5ea5
* term/rxvt.el (function-key-map): Use substitute-key-definition
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff
changeset
|
1 ;;; cygwin.el --- support for the Cygwin terminal -*- no-byte-compile: t -*- |
d5254bde5ea5
* term/rxvt.el (function-key-map): Use substitute-key-definition
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff
changeset
|
2 |
d5254bde5ea5
* term/rxvt.el (function-key-map): Use substitute-key-definition
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff
changeset
|
3 ;;; The Cygwin terminal can't really display underlines. |
64651
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64628
diff
changeset
|
4 |
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64628
diff
changeset
|
5 (defun terminal-init-cygwin () |
83524
673d62ad74b5
Fix and/or simplify terminal initialization files.
Karoly Lorentey <lorentey@elte.hu>
parents:
64651
diff
changeset
|
6 "Terminal initialization function for cygwin." |
64651
af1c58687bdd
* term/apollo.el (terminal-init-apollo): New function containing
Dan Nicolaescu <dann@ics.uci.edu>
parents:
64628
diff
changeset
|
7 (tty-no-underline)) |
64596
d5254bde5ea5
* term/rxvt.el (function-key-map): Use substitute-key-definition
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff
changeset
|
8 |
64628 | 9 ;; arch-tag: ca81ce67-3c41-4883-a29b-4c3d64a21191 |
64596
d5254bde5ea5
* term/rxvt.el (function-key-map): Use substitute-key-definition
Dan Nicolaescu <dann@ics.uci.edu>
parents:
diff
changeset
|
10 ;;; cygwin.el ends here |