Mercurial > emacs
diff src/window.c @ 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 | 923b8d6d8277 |
| children | 09e092438107 |
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)) {
