changeset 32773:a7fdbf39d4de

(window_scroll_pixel_based, window_scroll_line_based): Pass nil for FULLY argument to Fpos_visible_in_window_p to maintain old behavior.
author Miles Bader <miles@gnu.org>
date Mon, 23 Oct 2000 13:47:40 +0000
parents 5ce777c66565
children 191ab1dbff56
files src/window.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/window.c	Mon Oct 23 13:46:41 2000 +0000
+++ b/src/window.c	Mon Oct 23 13:47:40 2000 +0000
@@ -3842,7 +3842,7 @@
   /* 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 @@
   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))
     {