Variable: file-cache-case-fold-search

file-cache-case-fold-search is a customizable variable defined in filecache.el.gz.

Value

t

Documentation

If non-nil, file-cache completion should ignore case.

Defaults to the value of case-fold-search.

Source Code

;; Defined in /usr/src/emacs/lisp/filecache.el.gz
(defcustom file-cache-case-fold-search
  (if (memq system-type '(ms-dos windows-nt cygwin))
      t
    case-fold-search)
  "If non-nil, file-cache completion should ignore case.
Defaults to the value of `case-fold-search'."
  :type 'boolean)