1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-03-06 14:02:07 -08:00

* 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 @@ done:
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. */