From: Miles Bader Date: Mon, 23 Oct 2000 13:46:41 +0000 (+0000) Subject: (Fminibuffer_complete): Pass nil for FULLY argument to X-Git-Tag: emacs-pretest-21.0.90~664 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7d7c38618c949e5db90814b5ef1294a05ccacd07;p=emacs.git (Fminibuffer_complete): Pass nil for FULLY argument to Fpos_visible_in_window_p to maintain old behavior. --- diff --git a/src/minibuf.c b/src/minibuf.c index 1b85c134a15..5edd58e3a89 100644 --- a/src/minibuf.c +++ b/src/minibuf.c @@ -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);