]> git.eshelyaron.com Git - emacs.git/commitdiff
(try_window_id): Fix the fix and set the right
authorGerd Moellmann <gerd@gnu.org>
Fri, 11 May 2001 13:07:15 +0000 (13:07 +0000)
committerGerd Moellmann <gerd@gnu.org>
Fri, 11 May 2001 13:07:15 +0000 (13:07 +0000)
window_end_vpos.

src/ChangeLog
src/xdisp.c

index bda06d0415641017f374c8237ceb651f02bc9bac..bac865421b4fd9be3d83f1c4e9c994731af0af8f 100644 (file)
@@ -1,8 +1,11 @@
 2001-05-11  Gerd Moellmann  <gerd@gnu.org>
 
-       * xdisp.c (try_window_id): Fix computation of window end in
-       the case that lines were deleted at the end of the window.
-       Add some more debug_method_adds.
+       * xdisp.c (try_window_id): Fix the fix and set the right
+       window_end_vpos.
+
+       * xdisp.c (try_window_id): Fix computation of window end in the
+       case that lines were deleted at the end of the window.  Add some
+       more debug_method_adds.
 
        * xfaces.c (try_alternative_families): New function.
        (try_font_list): Use it.  If ATTRS specifies a family, check
index 97f8c81f64243e621bf9983b17cc621fa3483ba9..f18f5ac5a2f863d865c2e82f8c26c22ff0ec1e3e 100644 (file)
@@ -11707,7 +11707,7 @@ try_window_id (w)
        }
 
       xassert (row != NULL);
-      w->window_end_vpos = make_number (vpos);
+      w->window_end_vpos = make_number (vpos + 1);
       w->window_end_pos = make_number (Z - MATRIX_ROW_END_CHARPOS (row));
       w->window_end_bytepos = Z_BYTE - MATRIX_ROW_END_BYTEPOS (row);
       xassert (w->window_end_bytepos >= 0);