# HG changeset patch # User Jim Blandy # Date 740284900 0 # Node ID 41a297faf4acb753fdaf70de82791efb4bc76f0c # Parent 04b741620a507f033a2a001ae1d01562754634d1 * xdisp.c (redisplay_window): No need to subtract one from start before passing it to the set_vertical_scroll_bar_hook. diff -r 04b741620a50 -r 41a297faf4ac src/xdisp.c --- a/src/xdisp.c Thu Jun 17 02:28:19 1993 +0000 +++ b/src/xdisp.c Thu Jun 17 02:41:40 1993 +0000 @@ -1088,7 +1088,7 @@ start = end = whole = 0; /* Indicate what this scroll bar ought to be displaying now. */ - (*set_vertical_scroll_bar_hook) (w, end - start, whole, start - 1); + (*set_vertical_scroll_bar_hook) (w, end - start, whole, start); /* Note that we actually used the scroll bar attached to this window, so it shouldn't be deleted at the end of redisplay. */