]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fminibuffer_complete): Call Fpos_visible_in_window_p
authorEli Zaretskii <eliz@gnu.org>
Sat, 21 Oct 2000 08:57:18 +0000 (08:57 +0000)
committerEli Zaretskii <eliz@gnu.org>
Sat, 21 Oct 2000 08:57:18 +0000 (08:57 +0000)
with an additional argument of Qt.

src/ChangeLog
src/minibuf.c

index 4d64cde2e0dbf523afc700910d3437f94a948444..7e14785177bdaf40ad8e277ed8fc76da2fbf1a28 100644 (file)
@@ -1,3 +1,8 @@
+2000-10-21  Eli Zaretskii  <eliz@is.elta.co.il>
+
+       * minibuf.c (Fminibuffer_complete): Call Fpos_visible_in_window_p
+       with an additional argument of Qt.
+
 2000-10-21  Miles Bader  <miles@gnu.org>
 
        * window.c (pos_fully_visible_in_window_p): New function.
index 8df082bc195120342f52b6315dbcc700de3b34b0..1b85c134a15d6ad96cb46ccdb14e79d2433ca67f 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);
+      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);