(redraw_overlapping_rows): Fix detection of
authorYAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
Wed, 8 Apr 2009 10:30:51 +0000 (10:30 +0000)
committerYAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
Wed, 8 Apr 2009 10:30:51 +0000 (10:30 +0000)
overlapping for topmost and bottommost rows.

src/ChangeLog
src/dispnew.c

index 3ae638f..aca9e80 100644 (file)
@@ -1,5 +1,8 @@
 2009-04-08  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
 
+       * dispnew.c (redraw_overlapping_rows): Fix detection of
+       overlapping for topmost and bottommost rows.
+
        * ftfont.c (ftfont_text_extents): Fix calculation of
        metrics->descent.
 
index bbe0f9f..3fbb113 100644 (file)
@@ -4129,14 +4129,14 @@ redraw_overlapping_rows (w, yb)
 
       bottom_y = MATRIX_ROW_BOTTOM_Y (row);
 
-      if (row->overlapping_p && i > 0 && bottom_y < yb)
+      if (row->overlapping_p)
        {
          int overlaps = 0;
 
-         if (MATRIX_ROW_OVERLAPS_PRED_P (row)
+         if (MATRIX_ROW_OVERLAPS_PRED_P (row) && i > 0
              && !MATRIX_ROW (w->current_matrix, i - 1)->overlapped_p)
            overlaps |= OVERLAPS_PRED;
-         if (MATRIX_ROW_OVERLAPS_SUCC_P (row)
+         if (MATRIX_ROW_OVERLAPS_SUCC_P (row) && bottom_y < yb
              && !MATRIX_ROW (w->current_matrix, i + 1)->overlapped_p)
            overlaps |= OVERLAPS_SUCC;