aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/filecache.el
diff options
context:
space:
mode:
authorJuanma Barranquero2003-01-31 15:24:20 +0000
committerJuanma Barranquero2003-01-31 15:24:20 +0000
commitc60ee5e70f7ae20f1bbf7d0e2d36f40658f3dff1 (patch)
tree7d28300d64e41bf2aeed37bc8f1293f9fc52a36a /lisp/filecache.el
parent2454c12d458c60b871f6f36c3fd6ba752aad61bf (diff)
downloademacs-c60ee5e70f7ae20f1bbf7d0e2d36f40658f3dff1.tar.gz
emacs-c60ee5e70f7ae20f1bbf7d0e2d36f40658f3dff1.zip
Cygwin support patch.
Diffstat (limited to 'lisp/filecache.el')
-rw-r--r--lisp/filecache.el6
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."
187 :group 'file-cache) 187 :group 'file-cache)
188 188
189(defcustom file-cache-completion-ignore-case 189(defcustom file-cache-completion-ignore-case
190 (if (memq system-type (list 'ms-dos 'windows-nt)) 190 (if (memq system-type (list 'ms-dos 'windows-nt 'cygwin))
191 t 191 t
192 completion-ignore-case) 192 completion-ignore-case)
193 "If non-nil, file-cache completion should ignore case. 193 "If non-nil, file-cache completion should ignore case.
@@ -197,7 +197,7 @@ Defaults to the value of `completion-ignore-case'."
197 ) 197 )
198 198
199(defcustom file-cache-case-fold-search 199(defcustom file-cache-case-fold-search
200 (if (memq system-type (list 'ms-dos 'windows-nt)) 200 (if (memq system-type (list 'ms-dos 'windows-nt 'cygwin))
201 t 201 t
202 case-fold-search) 202 case-fold-search)
203 "If non-nil, file-cache completion should ignore case. 203 "If non-nil, file-cache completion should ignore case.
@@ -207,7 +207,7 @@ Defaults to the value of `case-fold-search'."
207 ) 207 )
208 208
209(defcustom file-cache-assoc-function 209(defcustom file-cache-assoc-function
210 (if (memq system-type (list 'ms-dos 'windows-nt)) 210 (if (memq system-type (list 'ms-dos 'windows-nt 'cygwin))
211 'assoc-ignore-case 211 'assoc-ignore-case
212 'assoc) 212 'assoc)
213 "Function to use to check completions in the file cache. 213 "Function to use to check completions in the file cache.