]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix calculation of the vertical scroll bar's thumb
authorEli Zaretskii <eliz@gnu.org>
Fri, 8 Jul 2022 06:42:02 +0000 (09:42 +0300)
committerGregory Heytings <gregory@heytings.org>
Mon, 18 Jul 2022 20:49:20 +0000 (22:49 +0200)
* src/xdisp.c (set_vertical_scroll_bar): Compute window's end
position "by hand" if w->window_end_pos cannot be relied upon.

src/xdisp.c

index 375158a5204993c1e6ae4463042ba9ec078c0597..ae6553d8760c520320fb39a0f640fefec29f69a8 100644 (file)
@@ -18924,11 +18924,27 @@ set_vertical_scroll_bar (struct window *w)
          && NILP (echo_area_buffer[0])))
     {
       struct buffer *buf = XBUFFER (w->contents);
+      ptrdiff_t window_end_pos = w->window_end_pos;
+
+      /* If w->window_end_pos cannot be trusted, recompute it "the
+        hard way".  */
+      if (!w->window_end_valid)
+       {
+         struct it it;
+         struct text_pos start_pos;
+
+         SET_TEXT_POS_FROM_MARKER (start_pos, w->start);
+         start_display (&it, w, start_pos);
+         move_it_to (&it, -1, it.last_visible_x, window_box_height (w), -1,
+                     MOVE_TO_X | MOVE_TO_Y);
+         window_end_pos = BUF_Z (buf) - IT_CHARPOS (it);
+       }
+
       whole = BUF_ZV (buf) - BUF_BEGV (buf);
       start = marker_position (w->start) - BUF_BEGV (buf);
       /* I don't think this is guaranteed to be right.  For the
         moment, we'll pretend it is.  */
-      end = BUF_Z (buf) - w->window_end_pos - BUF_BEGV (buf);
+      end = BUF_Z (buf) - window_end_pos - BUF_BEGV (buf);
 
       if (end < start)
        end = start;