diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2003-01-31 15:24:20 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2003-01-31 15:24:20 +0000 |
commit | c60ee5e70f7ae20f1bbf7d0e2d36f40658f3dff1 (patch) | |
tree | 7d28300d64e41bf2aeed37bc8f1293f9fc52a36a /lisp/filecache.el | |
parent | 2454c12d458c60b871f6f36c3fd6ba752aad61bf (diff) | |
download | emacs-c60ee5e70f7ae20f1bbf7d0e2d36f40658f3dff1.tar.gz |
Cygwin support patch.
Diffstat (limited to 'lisp/filecache.el')
-rw-r--r-- | lisp/filecache.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/filecache.el b/lisp/filecache.el index 72ef62fc650..4cc259bf9f6 100644 --- a/lisp/filecache.el +++ b/lisp/filecache.el @@ -187,7 +187,7 @@ do not use this variable." :group 'file-cache) (defcustom file-cache-completion-ignore-case - (if (memq system-type (list 'ms-dos 'windows-nt)) + (if (memq system-type (list 'ms-dos 'windows-nt 'cygwin)) t completion-ignore-case) "If non-nil, file-cache completion should ignore case. @@ -197,7 +197,7 @@ Defaults to the value of `completion-ignore-case'." ) (defcustom file-cache-case-fold-search - (if (memq system-type (list 'ms-dos 'windows-nt)) + (if (memq system-type (list 'ms-dos 'windows-nt 'cygwin)) t case-fold-search) "If non-nil, file-cache completion should ignore case. @@ -207,7 +207,7 @@ Defaults to the value of `case-fold-search'." ) (defcustom file-cache-assoc-function - (if (memq system-type (list 'ms-dos 'windows-nt)) + (if (memq system-type (list 'ms-dos 'windows-nt 'cygwin)) 'assoc-ignore-case 'assoc) "Function to use to check completions in the file cache. |