From: Miles Bader Date: Mon, 23 Oct 2000 13:48:52 +0000 (+0000) Subject: (window_scroll_pixel_based, window_scroll_line_based): X-Git-Tag: emacs-pretest-21.0.90~663 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6ffdb539525b201897ddd17a2798d1841eaa2547;p=emacs.git (window_scroll_pixel_based, window_scroll_line_based): Pass nil for FULLY argument to Fpos_visible_in_window_p to maintain old behavior. --- diff --git a/src/ChangeLog b/src/ChangeLog index c77f62324f8..3cb5ce46d45 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,10 @@ +2000-10-23 Miles Bader + + * 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 * xterm.c (VCENTER_BASELINE_OFFSET): Bias the division by two, so diff --git a/src/window.c b/src/window.c index ee7a10f9806..f11436b65b2 100644 --- a/src/window.c +++ b/src/window.c @@ -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)) {