diff options
author | Karl Heuer <kwzh@gnu.org> | 1999-03-30 21:29:19 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1999-03-30 21:29:19 +0000 |
commit | b1c501a94e9b05b0b7159a02fe17faea9d328601 (patch) | |
tree | 7103e1eb2f92b2bbebe0f29498eecab26be0db59 /lisp/icomplete.el | |
parent | e7581a181a0485fcde028ba37967b1489cd07de9 (diff) | |
download | emacs-b1c501a94e9b05b0b7159a02fe17faea9d328601.tar.gz |
(icomplete-mode): Doc fix.
Diffstat (limited to 'lisp/icomplete.el')
-rw-r--r-- | lisp/icomplete.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/icomplete.el b/lisp/icomplete.el index 7609e3a11ab..f7c8d7c349c 100644 --- a/lisp/icomplete.el +++ b/lisp/icomplete.el @@ -74,10 +74,11 @@ ;;;_* User Customization variables (defcustom icomplete-mode nil - "*Non-nil enables incremental minibuffer completion. + "Toggle incremental minibuffer completion. As text is typed into the minibuffer, prospective completions are indicated in the minibuffer. -You must modify via \\[customize] for this variable to have an effect." +This variable should be set only with \\[customize], which is equivalent +to using the function `icomplete-mode'. :set (lambda (symbol value) (icomplete-mode (if value 1 -1))) :initialize 'custom-initialize-default |