Variable: file-cache-find-command-posix-flag

file-cache-find-command-posix-flag is a customizable variable defined in filecache.el.gz.

Value

not-defined

Documentation

Set to t, if file-cache-find-command handles wildcards POSIX style.

This variable is automatically set to nil or non-nil if it has the initial value not-defined whenever you first call the file-cache-add-directory-using-find.

Under Windows operating system where Cygwin is available, this value should be t.

Source Code

;; Defined in /usr/src/emacs/lisp/filecache.el.gz
(defcustom file-cache-find-command-posix-flag 'not-defined
  "Set to t, if `file-cache-find-command' handles wildcards POSIX style.
This variable is automatically set to nil or non-nil
if it has the initial value `not-defined' whenever you first
call the `file-cache-add-directory-using-find'.

Under Windows operating system where Cygwin is available, this value
should be t."
  :type  '(choice (const :tag "Yes" t)
		  (const :tag "No" nil)
		  (const :tag "Unknown" not-defined)))