aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Paul Wallington2004-08-14 12:46:46 +0000
committerJohn Paul Wallington2004-08-14 12:46:46 +0000
commit750286732b38be5e14ef809b4ea5e108d7903bfe (patch)
treec3df11d609f7c91237cbdef29a40efde9124104d
parent723addaeae514f6418c135c85ec0d006c9d14d1c (diff)
downloademacs-750286732b38be5e14ef809b4ea5e108d7903bfe.tar.gz
emacs-750286732b38be5e14ef809b4ea5e108d7903bfe.zip
(syms_of_minibuf) <completion-ignore-case>: Doc fix.
-rw-r--r--src/minibuf.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/minibuf.c b/src/minibuf.c
index dd7bb42263b..d50e7404ab3 100644
--- a/src/minibuf.c
+++ b/src/minibuf.c
@@ -2673,7 +2673,10 @@ property of a history variable overrides this default. */);
2673 Vcompletion_auto_help = Qt; 2673 Vcompletion_auto_help = Qt;
2674 2674
2675 DEFVAR_BOOL ("completion-ignore-case", &completion_ignore_case, 2675 DEFVAR_BOOL ("completion-ignore-case", &completion_ignore_case,
2676 doc: /* Non-nil means don't consider case significant in completion. */); 2676 doc: /* Non-nil means don't consider case significant in completion.
2677
2678See also `read-file-name-completion-ignore-case' concerning case significance
2679in completion when reading a file name. */);
2677 completion_ignore_case = 0; 2680 completion_ignore_case = 0;
2678 2681
2679 DEFVAR_BOOL ("enable-recursive-minibuffers", &enable_recursive_minibuffers, 2682 DEFVAR_BOOL ("enable-recursive-minibuffers", &enable_recursive_minibuffers,