]> git.eshelyaron.com Git - emacs.git/commitdiff
(row_equal_p, update_window_line, scrolling_window):
authorKim F. Storm <storm@cua.dk>
Mon, 18 Apr 2005 14:09:10 +0000 (14:09 +0000)
committerKim F. Storm <storm@cua.dk>
Mon, 18 Apr 2005 14:09:10 +0000 (14:09 +0000)
Compare overlay_arrow_bitmap than overlay_arrow_p members.

src/dispnew.c

index 4f29abdb3894768c944aafcaa00d17338eeb45be..4ebc1461926e124326d49381e749c35dcd74490d 100644 (file)
@@ -1519,7 +1519,7 @@ row_equal_p (w, a, b, mouse_face_p)
          || a->left_fringe_face_id != b->left_fringe_face_id
          || a->right_fringe_bitmap != b->right_fringe_bitmap
          || a->right_fringe_face_id != b->right_fringe_face_id
-         || a->overlay_arrow_p != b->overlay_arrow_p
+         || a->overlay_arrow_bitmap != b->overlay_arrow_bitmap
          || a->exact_window_width_line_p != b->exact_window_width_line_p
          || a->overlapped_p != b->overlapped_p
          || (MATRIX_ROW_CONTINUATION_LINE_P (a)
@@ -4535,7 +4535,7 @@ update_window_line (w, vpos, mouse_face_overwritten_p)
          || desired_row->y != current_row->y
          || desired_row->visible_height != current_row->visible_height
          || desired_row->cursor_in_fringe_p != current_row->cursor_in_fringe_p
-         || desired_row->overlay_arrow_p != current_row->overlay_arrow_p
+         || desired_row->overlay_arrow_bitmap != current_row->overlay_arrow_bitmap
          || current_row->redraw_fringe_bitmaps_p
          || desired_row->mode_line_p != current_row->mode_line_p
          || desired_row->exact_window_width_line_p != current_row->exact_window_width_line_p
@@ -5045,7 +5045,7 @@ scrolling_window (w, header_line_p)
                    || to->right_fringe_bitmap != from->right_fringe_bitmap
                    || to->left_fringe_face_id != from->left_fringe_face_id
                    || to->right_fringe_face_id != from->right_fringe_face_id
-                   || to->overlay_arrow_p != from->overlay_arrow_p))
+                   || to->overlay_arrow_bitmap != from->overlay_arrow_bitmap))
              from->redraw_fringe_bitmaps_p = 1;
            assign_row (to, from);
            to->enabled_p = 1, from->enabled_p = 0;