From 18ad482131835b5e32bc5de50f9cb3a254967021 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 21 Oct 2000 08:57:18 +0000 Subject: [PATCH] (Fminibuffer_complete): Call Fpos_visible_in_window_p with an additional argument of Qt. --- src/ChangeLog | 5 +++++ src/minibuf.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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); -- 2.39.5