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

src/ChangeLog
src/window.c

index c77f62324f8139e4a64b69d25b10a39a8f887cc7..3cb5ce46d459ec970010dd5db9c8904111a088a7 100644 (file)
@@ -1,3 +1,10 @@
+2000-10-23  Miles Bader  <miles@gnu.org>
+
+       * window.c (window_scroll_pixel_based, window_scroll_line_based):
+       Pass nil for FULLY argument to Fpos_visible_in_window_p to
+       maintain old behavior.
+       * minibuf.c (Fminibuffer_complete): Likewise.
+
 2000-10-23  Miles Bader  <miles@lsi.nec.co.jp>
 
        * xterm.c (VCENTER_BASELINE_OFFSET): Bias the division by two, so
index ee7a10f9806950433ec1e7af97f04b93674bd960..f11436b65b2bb3e11521d181ad347fc249c9633a 100644 (file)
@@ -3842,7 +3842,7 @@ window_scroll_pixel_based (window, n, whole, noerror)
   /* If PT is not visible in WINDOW, move back one half of
      the screen.  */
   XSETFASTINT (tem, PT);
-  tem = Fpos_visible_in_window_p (tem, window, Qt);
+  tem = Fpos_visible_in_window_p (tem, window, Qnil);
   if (NILP (tem))
     {
       /* Move backward half the height of the window.  Performance note:
@@ -3986,7 +3986,7 @@ window_scroll_line_based (window, n, whole, noerror)
   original_vpos = posit.vpos;
 
   XSETFASTINT (tem, PT);
-  tem = Fpos_visible_in_window_p (tem, window, Qt);
+  tem = Fpos_visible_in_window_p (tem, window, Qnil);
 
   if (NILP (tem))
     {