]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fminibuffer_complete): Pass nil for FULLY argument to
authorMiles Bader <miles@gnu.org>
Mon, 23 Oct 2000 13:46:41 +0000 (13:46 +0000)
committerMiles Bader <miles@gnu.org>
Mon, 23 Oct 2000 13:46:41 +0000 (13:46 +0000)
Fpos_visible_in_window_p to maintain old behavior.

src/minibuf.c

index 1b85c134a15d6ad96cb46ccdb14e79d2433ca67f..5edd58e3a89cfaf76b26012ec416d9f948511410 100644 (file)
@@ -1715,7 +1715,7 @@ scroll the window of possible completions.")
       struct buffer *obuf = current_buffer;
 
       Fset_buffer (XWINDOW (window)->buffer);
-      tem = Fpos_visible_in_window_p (make_number (ZV), window, Qt);
+      tem = Fpos_visible_in_window_p (make_number (ZV), window, Qnil);
       if (! NILP (tem))
        /* If end is in view, scroll up to the beginning.  */
        Fset_window_start (window, make_number (BEGV), Qnil);