Variable: file-cache-completion-ignore-case
file-cache-completion-ignore-case is a customizable variable defined
in filecache.el.gz.
Value
nil
Documentation
If non-nil, file-cache completion should ignore case.
Defaults to the value of completion-ignore-case.
Source Code
;; Defined in /usr/src/emacs/lisp/filecache.el.gz
(defcustom file-cache-completion-ignore-case
(if (memq system-type '(ms-dos windows-nt cygwin))
t
completion-ignore-case)
"If non-nil, file-cache completion should ignore case.
Defaults to the value of `completion-ignore-case'."
:type 'boolean)