1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-03 14:10:47 -08:00

(icomplete-minibuffer-setup-hook): Doc fix.

This commit is contained in:
Eli Zaretskii 2001-01-22 16:03:42 +00:00
parent 57c28064ec
commit 9c8acefd2c
2 changed files with 8 additions and 4 deletions

View file

@ -1,3 +1,7 @@
2001-01-22 Eli Zaretskii <eliz@is.elta.co.il>
* icomplete.el (icomplete-minibuffer-setup-hook): Doc fix.
2001-01-22 Gerd Moellmann <gerd@gnu.org>
* isearch.el (isearch-lazy-highlight-case-fold-search)

View file

@ -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)