• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/emacs-93/emacs/lisp/

Lines Matching +defs:ignore +defs:command

33 ;; The cache can be used with any interactive command which takes a
61 ;; * `file-cache-add-directory-using-find': Uses the `find' command to
64 ;; * `file-cache-add-directory-using-locate': Uses the `locate' command to
169 (defcustom file-cache-find-command "find"
174 (defcustom file-cache-find-command-posix-flag 'not-defined
175 "*Set to t, if `file-cache-find-command' handles wildcards POSIX style.
187 (defcustom file-cache-locate-command "locate"
209 (defcustom file-cache-completion-ignore-case
212 completion-ignore-case)
213 "If non-nil, file-cache completion should ignore case.
214 Defaults to the value of `completion-ignore-case'."
223 "If non-nil, file-cache completion should ignore case.
229 (defcustom file-cache-ignore-case
231 "Non-nil means ignore case when checking completions in the file cache.
323 file-cache-ignore-case))
342 "Use the `find' command to add files to the file cache.
347 (if (eq file-cache-find-command-posix-flag 'not-defined)
348 (setq file-cache-find-command-posix-flag
349 (executable-command-find-posix-p file-cache-find-command))))
352 (call-process file-cache-find-command nil
356 (if file-cache-find-command-posix-flag
365 "Use the `locate' command to add files to the file cache.
366 STRING is passed as an argument to the locate command."
370 (call-process file-cache-locate-command nil
434 (delq (assoc-string file file-cache-alist file-cache-ignore-case)
493 file-cache-ignore-case)))
564 (completion-ignore-case file-cache-completion-ignore-case)
591 file-cache-ignore-case))
592 (if (and (eq last-command this-command)
649 unread-command-events (list 7))))))
761 file-cache-ignore-case))