aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/filecache.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/filecache.el')
-rw-r--r--lisp/filecache.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/filecache.el b/lisp/filecache.el
index 9e06d6f23ef..19d6fdf5c5e 100644
--- a/lisp/filecache.el
+++ b/lisp/filecache.el
@@ -157,7 +157,7 @@
157(defcustom file-cache-filter-regexps 157(defcustom file-cache-filter-regexps
158 (list "~$" "\\.o$" "\\.exe$" "\\.a$" "\\.elc$" ",v$" "\\.output$" 158 (list "~$" "\\.o$" "\\.exe$" "\\.a$" "\\.elc$" ",v$" "\\.output$"
159 "\\.$" "#$" "\\.class$") 159 "\\.$" "#$" "\\.class$")
160 "*List of regular expressions used as filters by the file cache. 160 "List of regular expressions used as filters by the file cache.
161File names which match these expressions will not be added to the cache. 161File names which match these expressions will not be added to the cache.
162Note that the functions `file-cache-add-file' and `file-cache-add-file-list' 162Note that the functions `file-cache-add-file' and `file-cache-add-file-list'
163do not use this variable." 163do not use this variable."
@@ -165,12 +165,12 @@ do not use this variable."
165 :group 'file-cache) 165 :group 'file-cache)
166 166
167(defcustom file-cache-find-command "find" 167(defcustom file-cache-find-command "find"
168 "*External program used by `file-cache-add-directory-using-find'." 168 "External program used by `file-cache-add-directory-using-find'."
169 :type 'string 169 :type 'string
170 :group 'file-cache) 170 :group 'file-cache)
171 171
172(defcustom file-cache-find-command-posix-flag 'not-defined 172(defcustom file-cache-find-command-posix-flag 'not-defined
173 "*Set to t, if `file-cache-find-command' handles wildcards POSIX style. 173 "Set to t, if `file-cache-find-command' handles wildcards POSIX style.
174This variable is automatically set to nil or non-nil 174This variable is automatically set to nil or non-nil
175if it has the initial value `not-defined' whenever you first 175if it has the initial value `not-defined' whenever you first
176call the `file-cache-add-directory-using-find'. 176call the `file-cache-add-directory-using-find'.
@@ -183,7 +183,7 @@ should be t."
183 :group 'file-cache) 183 :group 'file-cache)
184 184
185(defcustom file-cache-locate-command "locate" 185(defcustom file-cache-locate-command "locate"
186 "*External program used by `file-cache-add-directory-using-locate'." 186 "External program used by `file-cache-add-directory-using-locate'."
187 :type 'string 187 :type 'string
188 :group 'file-cache) 188 :group 'file-cache)
189 189