]> git.eshelyaron.com Git - emacs.git/commitdiff
(notice_overwritten_cursor): Fix an off by 1 error.
authorGerd Moellmann <gerd@gnu.org>
Wed, 24 Apr 2002 10:30:06 +0000 (10:30 +0000)
committerGerd Moellmann <gerd@gnu.org>
Wed, 24 Apr 2002 10:30:06 +0000 (10:30 +0000)
src/ChangeLog
src/xterm.c

index 3e77547a6fe33e11600b01fa35f48c88271b8ac3..b5dabee3d816fbe5c3e224500870f2a12247d6b1 100644 (file)
@@ -1,3 +1,7 @@
+2002-04-24  Gerd Moellmann  <gerd@gnu.org>
+
+       * xterm.c (notice_overwritten_cursor): Fix an off by 1 error.
+
 2002-04-23  Colin Walters  <walters@verbum.org>
 
        * buffer.c (syms_of_buffer): Doc fix.
index d0a521d6e3c9c676decef0fdff925ad8315d1c22..5b4b211924e2c9d13906cfe459c32836ca212c85 100644 (file)
@@ -11249,7 +11249,7 @@ notice_overwritten_cursor (w, area, x0, x1, y0, y1)
             exception of the cursor being in the first blank row at
             the buffer and window end because update_text_area
             doesn't draw that row.  */
-         if (((y0 >= cy0 && y0 < cy1) || (y1 >= cy0 && y1 < cy1))
+         if (((y0 >= cy0 && y0 < cy1) || (y1 > cy0 && y1 < cy1))
              && w->current_matrix->rows[w->phys_cursor.vpos].displays_text_p)
            w->phys_cursor_on_p = 0;
        }