* 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:
parent
7fded6909e
commit
7eb9ba4137
1 changed files with 1 additions and 1 deletions
|
@ -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. */
|
||||
|
|
Loading…
Add table
Reference in a new issue