# HG changeset patch # User Karl Heuer # Date 876953917 0 # Node ID 8baac8399a294b8ba1da6adc792ca64daaddb2f8 # Parent cf048b4908031ccdc0da94d5f9fb193f2688609f (window_scroll): When scrolling forward and point is inside the scroll margin put point at bottom of it, not at window start. diff -r cf048b490803 -r 8baac8399a29 src/window.c --- a/src/window.c Wed Oct 15 17:18:11 1997 +0000 +++ b/src/window.c Wed Oct 15 22:18:37 1997 +0000 @@ -2850,7 +2850,7 @@ Fvertical_motion (make_number (original_vpos), window); } else - SET_PT (pos); + SET_PT (top_margin); } else if (n < 0) {