diff options
author | Richard M. Stallman <rms@gnu.org> | 2004-11-16 17:27:48 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2004-11-16 17:27:48 +0000 |
commit | 5d645852385218a0252ec29aabf3de28364d3ec5 (patch) | |
tree | f63367f8fb159dbe135bca598ac3a16c5241b2b6 /lispref/minibuf.texi | |
parent | 6657986f006b932cd7e88f67084d0052655fc724 (diff) | |
download | emacs-5d645852385218a0252ec29aabf3de28364d3ec5.tar.gz |
(Minibuffer Completion): When ignoring case,
predicate must not be case-sensitive.
Diffstat (limited to 'lispref/minibuf.texi')
-rw-r--r-- | lispref/minibuf.texi | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lispref/minibuf.texi b/lispref/minibuf.texi index 1b076c5837d..3ac750d76a1 100644 --- a/lispref/minibuf.texi +++ b/lispref/minibuf.texi @@ -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}: |