From: Eli Zaretskii Date: Sat, 21 Oct 2000 08:57:18 +0000 (+0000) Subject: (Fminibuffer_complete): Call Fpos_visible_in_window_p X-Git-Tag: emacs-pretest-21.0.90~709 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=18ad482131835b5e32bc5de50f9cb3a254967021;p=emacs.git (Fminibuffer_complete): Call Fpos_visible_in_window_p with an additional argument of Qt. --- diff --git a/src/ChangeLog b/src/ChangeLog index 4d64cde2e0d..7e14785177b 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2000-10-21 Eli Zaretskii + + * minibuf.c (Fminibuffer_complete): Call Fpos_visible_in_window_p + with an additional argument of Qt. + 2000-10-21 Miles Bader * window.c (pos_fully_visible_in_window_p): New function. diff --git a/src/minibuf.c b/src/minibuf.c index 8df082bc195..1b85c134a15 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); + tem = Fpos_visible_in_window_p (make_number (ZV), window, Qt); if (! NILP (tem)) /* If end is in view, scroll up to the beginning. */ Fset_window_start (window, make_number (BEGV), Qnil);