aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2001-01-22 16:03:42 +0000
committerEli Zaretskii2001-01-22 16:03:42 +0000
commit9c8acefd2c44ef3a4be77025d2608a2043552ec8 (patch)
treee3b047a4643665f410e6212164ebc19ebf6903b6
parent57c28064ec94eb47731713517c910bdbda84a34e (diff)
downloademacs-9c8acefd2c44ef3a4be77025d2608a2043552ec8.tar.gz
emacs-9c8acefd2c44ef3a4be77025d2608a2043552ec8.zip
(icomplete-minibuffer-setup-hook): Doc fix.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/icomplete.el8
2 files changed, 8 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index b8c12d82b69..403d179f34e 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
12001-01-22 Eli Zaretskii <eliz@is.elta.co.il>
2
3 * icomplete.el (icomplete-minibuffer-setup-hook): Doc fix.
4
12001-01-22 Gerd Moellmann <gerd@gnu.org> 52001-01-22 Gerd Moellmann <gerd@gnu.org>
2 6
3 * isearch.el (isearch-lazy-highlight-case-fold-search) 7 * isearch.el (isearch-lazy-highlight-case-fold-search)
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'."
113 113
114This hook is run during minibuffer setup iff icomplete will be active. 114This hook is run during minibuffer setup iff icomplete will be active.
115It is intended for use in customizing icomplete for interoperation 115It is intended for use in customizing icomplete for interoperation
116with other packages. For instance: 116with other features and packages. For instance:
117 117
118 \(add-hook 'icomplete-minibuffer-setup-hook 118 \(add-hook 'icomplete-minibuffer-setup-hook
119 \(function 119 \(function
120 \(lambda () 120 \(lambda ()
121 \(make-local-variable 'resize-minibuffer-window-max-height) 121 \(make-local-variable 'max-mini-window-height)
122 \(setq resize-minibuffer-window-max-height 3)))) 122 \(setq max-mini-window-height 3))))
123 123
124will constrain rsz-mini to a maximum minibuffer height of 3 lines when 124will constrain Emacs to a maximum minibuffer height of 3 lines when
125icompletion is occurring." 125icompletion is occurring."
126 :type 'hook 126 :type 'hook
127 :group 'icomplete) 127 :group 'icomplete)