]> git.eshelyaron.com Git - emacs.git/commitdiff
(icomplete-minibuffer-setup-hook): Doc fix.
authorEli Zaretskii <eliz@gnu.org>
Mon, 22 Jan 2001 16:03:42 +0000 (16:03 +0000)
committerEli Zaretskii <eliz@gnu.org>
Mon, 22 Jan 2001 16:03:42 +0000 (16:03 +0000)
lisp/ChangeLog
lisp/icomplete.el

index b8c12d82b695c1ec3a9d3271bdf767ac0861b2ec..403d179f34e6a55a046c4fb6d8f2c09da7d9c1ab 100644 (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)
index 344cd9fe18f300a2c93369f55f84d5293e3eecaa..46ba90b2960c19034ea579c0de67c44766e3f6b6 100644 (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)