1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-28 10:56:36 +00:00

(Minibuffer Completion): When ignoring case,

predicate must not be case-sensitive.
This commit is contained in:
Richard M. Stallman 2004-11-16 17:27:48 +00:00
parent 6657986f00
commit 5d64585238

View File

@ -841,9 +841,11 @@ Methods}) and the setting of @code{enable-multibyte-characters}
(@pxref{Text Representations}) from whichever buffer was current before
entering the minibuffer.
Completion ignores case when comparing the input against the possible
matches, if the built-in variable @code{completion-ignore-case} is
non-@code{nil}. @xref{Basic Completion}.
If the built-in variable @code{completion-ignore-case} is
non-@code{nil}, completion ignores case when comparing the input
against the possible matches. @xref{Basic Completion}. In this mode
of operation, @var{predicate} must also ignore case, or you will get
surprising results.
Here's an example of using @code{completing-read}: