diff options
| author | John Paul Wallington | 2004-08-14 12:46:46 +0000 |
|---|---|---|
| committer | John Paul Wallington | 2004-08-14 12:46:46 +0000 |
| commit | 750286732b38be5e14ef809b4ea5e108d7903bfe (patch) | |
| tree | c3df11d609f7c91237cbdef29a40efde9124104d | |
| parent | 723addaeae514f6418c135c85ec0d006c9d14d1c (diff) | |
| download | emacs-750286732b38be5e14ef809b4ea5e108d7903bfe.tar.gz emacs-750286732b38be5e14ef809b4ea5e108d7903bfe.zip | |
(syms_of_minibuf) <completion-ignore-case>: Doc fix.
| -rw-r--r-- | src/minibuf.c | 5 |
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 | |||
| 2678 | See also `read-file-name-completion-ignore-case' concerning case significance | ||
| 2679 | in 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, |