1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-11 05:51:21 -08:00

(window_scroll): When scrolling forward and point is

inside the scroll margin put point at bottom of it, not at window
start.
This commit is contained in:
Karl Heuer 1997-10-15 22:18:37 +00:00
parent ab618c6ee6
commit 335406fc22

View file

@ -2850,7 +2850,7 @@ window_scroll (window, n, whole, noerror)
Fvertical_motion (make_number (original_vpos), window);
}
else
SET_PT (pos);
SET_PT (top_margin);
}
else if (n < 0)
{