* xdisp.c (redisplay_window): No need to subtract one from start

before passing it to the set_vertical_scroll_bar_hook.
This commit is contained in:
Jim Blandy 1993-06-17 02:41:40 +00:00
parent 7fded6909e
commit 7eb9ba4137

View file

@ -1088,7 +1088,7 @@ redisplay_window (window, just_this_one)
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. */