summaryrefslogtreecommitdiff
path: root/lisp/icomplete.el
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2001-01-22 16:03:42 +0000
committerEli Zaretskii <eliz@gnu.org>2001-01-22 16:03:42 +0000
commit9c8acefd2c44ef3a4be77025d2608a2043552ec8 (patch)
treee3b047a4643665f410e6212164ebc19ebf6903b6 /lisp/icomplete.el
parent57c28064ec94eb47731713517c910bdbda84a34e (diff)
downloademacs-9c8acefd2c44ef3a4be77025d2608a2043552ec8.tar.gz
(icomplete-minibuffer-setup-hook): Doc fix.
Diffstat (limited to 'lisp/icomplete.el')
-rw-r--r--lisp/icomplete.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/icomplete.el b/lisp/icomplete.el
index 344cd9fe18f..46ba90b2960 100644
--- a/lisp/icomplete.el
+++ b/lisp/icomplete.el
@@ -113,15 +113,15 @@ completions - see `icomplete-delay-completions-threshold'."
This hook is run during minibuffer setup iff icomplete will be active.
It is intended for use in customizing icomplete for interoperation
-with other packages. For instance:
+with other features and packages. For instance:
\(add-hook 'icomplete-minibuffer-setup-hook
\(function
\(lambda ()
- \(make-local-variable 'resize-minibuffer-window-max-height)
- \(setq resize-minibuffer-window-max-height 3))))
+ \(make-local-variable 'max-mini-window-height)
+ \(setq max-mini-window-height 3))))
-will constrain rsz-mini to a maximum minibuffer height of 3 lines when
+will constrain Emacs to a maximum minibuffer height of 3 lines when
icompletion is occurring."
:type 'hook
:group 'icomplete)