Variable: read-file-name-completion-ignore-case
read-file-name-completion-ignore-case is a customizable variable
defined in minibuffer.el.gz.
Value
nil
Documentation
Non-nil means when reading a file name completion ignores case.
This variable was added, or its default value changed, in Emacs 22.1.
Probably introduced at or before Emacs version 22.1.
Source Code
;; Defined in /usr/src/emacs/lisp/minibuffer.el.gz
(defcustom read-file-name-completion-ignore-case
(if (memq system-type '(ms-dos windows-nt darwin cygwin))
t nil)
"Non-nil means when reading a file name completion ignores case."
:type 'boolean
:version "22.1")