From 7eb9ba4137c648d7fa84dbe507948383269124ba Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Thu, 17 Jun 1993 02:41:40 +0000 Subject: [PATCH] * xdisp.c (redisplay_window): No need to subtract one from start before passing it to the set_vertical_scroll_bar_hook. --- src/xdisp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xdisp.c b/src/xdisp.c index f2da1dd25ce..368fe75b004 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -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. */