changeset 19061:e2be10e9bf9d

(redisplay_window): Fix one-off in handling scroll-conservatively for scrolling up.
author Richard M. Stallman <rms@gnu.org>
date Fri, 01 Aug 1997 00:12:35 +0000
parents 7b362a9bf8e9
children 9cc02044117d
files src/xdisp.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/xdisp.c	Thu Jul 31 16:44:49 1997 +0000
+++ b/src/xdisp.c	Fri Aug 01 00:12:35 1997 +0000
@@ -2033,7 +2033,7 @@
 				 startp, XFASTINT (w->height), 0,
 				 XFASTINT (w->width), XFASTINT (w->hscroll),
 				 pos_tab_offset (w, startp), w);
-	  if (pos.vpos >= scroll_conservatively)
+	  if (pos.vpos > scroll_conservatively)
 	    goto scroll_fail_1;
 
 	  pos = *vmotion (startp, - pos.vpos - this_scroll_margin, w);