+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
/* 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:
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))
{