Changeset 4166 for trunk/lisp/filecache.el
- Timestamp:
- 09/18/06 20:48:14 (2 years ago)
- Files:
-
- trunk/lisp/filecache.el (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lisp/filecache.el
r4037 r4166 267 267 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 268 268 269 ;;;###autoload 269 270 (defun file-cache-add-directory (directory &optional regexp) 270 271 "Add DIRECTORY to the file cache. … … 292 293 (file-cache-add-file-list dir-files)))) 293 294 295 ;;;###autoload 294 296 (defun file-cache-add-directory-list (directory-list &optional regexp) 295 297 "Add DIRECTORY-LIST (a list of directory names) to the file cache. … … 308 310 309 311 ;; Workhorse function 312 313 ;;;###autoload 310 314 (defun file-cache-add-file (file) 311 315 "Add FILE to the file cache." … … 334 338 ))) 335 339 340 ;;;###autoload 336 341 (defun file-cache-add-directory-using-find (directory) 337 342 "Use the `find' command to add files to the file cache. … … 356 361 (file-cache-add-from-file-cache-buffer))) 357 362 363 ;;;###autoload 358 364 (defun file-cache-add-directory-using-locate (string) 359 365 "Use the `locate' command to add files to the file cache. … … 367 373 (file-cache-add-from-file-cache-buffer)) 368 374 375 ;;;###autoload 369 376 (defun file-cache-add-directory-recursively (dir &optional regexp) 370 377 "Adds DIR and any subdirectories to the file-cache.
