Variable: completion-ignore-case
completion-ignore-case is a variable defined in minibuf.c.
Value
nil
Documentation
Non-nil means don't consider case significant in completion.
For file-name completion, read-file-name-completion-ignore-case
controls the behavior, rather than this variable.
For buffer name completion, read-buffer-completion-ignore-case
controls the behavior, rather than this variable.
Probably introduced at or before Emacs version 17.
Aliases
pcomplete-ignore-case (obsolete since 28.1)
Source Code
// Defined in /usr/src/emacs/src/minibuf.c
DEFVAR_BOOL ("completion-ignore-case", completion_ignore_case,
doc: /* Non-nil means don't consider case significant in completion.
For file-name completion, `read-file-name-completion-ignore-case'
controls the behavior, rather than this variable.
For buffer name completion, `read-buffer-completion-ignore-case'
controls the behavior, rather than this variable. */);