diff options
| author | Kim F. Storm | 2005-04-18 14:09:10 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2005-04-18 14:09:10 +0000 |
| commit | 3d4a365f6184f70e95cefc599711ef8226328639 (patch) | |
| tree | cb986371662723075240b1b8ff7d7cb297b01763 /src | |
| parent | e937c046801196d623284eb46d3d504235bfec66 (diff) | |
| download | emacs-3d4a365f6184f70e95cefc599711ef8226328639.tar.gz emacs-3d4a365f6184f70e95cefc599711ef8226328639.zip | |
(row_equal_p, update_window_line, scrolling_window):
Compare overlay_arrow_bitmap than overlay_arrow_p members.
Diffstat (limited to 'src')
| -rw-r--r-- | src/dispnew.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dispnew.c b/src/dispnew.c index 4f29abdb389..4ebc1461926 100644 --- a/src/dispnew.c +++ b/src/dispnew.c | |||
| @@ -1519,7 +1519,7 @@ row_equal_p (w, a, b, mouse_face_p) | |||
| 1519 | || a->left_fringe_face_id != b->left_fringe_face_id | 1519 | || a->left_fringe_face_id != b->left_fringe_face_id |
| 1520 | || a->right_fringe_bitmap != b->right_fringe_bitmap | 1520 | || a->right_fringe_bitmap != b->right_fringe_bitmap |
| 1521 | || a->right_fringe_face_id != b->right_fringe_face_id | 1521 | || a->right_fringe_face_id != b->right_fringe_face_id |
| 1522 | || a->overlay_arrow_p != b->overlay_arrow_p | 1522 | || a->overlay_arrow_bitmap != b->overlay_arrow_bitmap |
| 1523 | || a->exact_window_width_line_p != b->exact_window_width_line_p | 1523 | || a->exact_window_width_line_p != b->exact_window_width_line_p |
| 1524 | || a->overlapped_p != b->overlapped_p | 1524 | || a->overlapped_p != b->overlapped_p |
| 1525 | || (MATRIX_ROW_CONTINUATION_LINE_P (a) | 1525 | || (MATRIX_ROW_CONTINUATION_LINE_P (a) |
| @@ -4535,7 +4535,7 @@ update_window_line (w, vpos, mouse_face_overwritten_p) | |||
| 4535 | || desired_row->y != current_row->y | 4535 | || desired_row->y != current_row->y |
| 4536 | || desired_row->visible_height != current_row->visible_height | 4536 | || desired_row->visible_height != current_row->visible_height |
| 4537 | || desired_row->cursor_in_fringe_p != current_row->cursor_in_fringe_p | 4537 | || desired_row->cursor_in_fringe_p != current_row->cursor_in_fringe_p |
| 4538 | || desired_row->overlay_arrow_p != current_row->overlay_arrow_p | 4538 | || desired_row->overlay_arrow_bitmap != current_row->overlay_arrow_bitmap |
| 4539 | || current_row->redraw_fringe_bitmaps_p | 4539 | || current_row->redraw_fringe_bitmaps_p |
| 4540 | || desired_row->mode_line_p != current_row->mode_line_p | 4540 | || desired_row->mode_line_p != current_row->mode_line_p |
| 4541 | || desired_row->exact_window_width_line_p != current_row->exact_window_width_line_p | 4541 | || desired_row->exact_window_width_line_p != current_row->exact_window_width_line_p |
| @@ -5045,7 +5045,7 @@ scrolling_window (w, header_line_p) | |||
| 5045 | || to->right_fringe_bitmap != from->right_fringe_bitmap | 5045 | || to->right_fringe_bitmap != from->right_fringe_bitmap |
| 5046 | || to->left_fringe_face_id != from->left_fringe_face_id | 5046 | || to->left_fringe_face_id != from->left_fringe_face_id |
| 5047 | || to->right_fringe_face_id != from->right_fringe_face_id | 5047 | || to->right_fringe_face_id != from->right_fringe_face_id |
| 5048 | || to->overlay_arrow_p != from->overlay_arrow_p)) | 5048 | || to->overlay_arrow_bitmap != from->overlay_arrow_bitmap)) |
| 5049 | from->redraw_fringe_bitmaps_p = 1; | 5049 | from->redraw_fringe_bitmaps_p = 1; |
| 5050 | assign_row (to, from); | 5050 | assign_row (to, from); |
| 5051 | to->enabled_p = 1, from->enabled_p = 0; | 5051 | to->enabled_p = 1, from->enabled_p = 0; |