diff options
| author | Kim F. Storm | 2005-04-18 14:09:00 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2005-04-18 14:09:00 +0000 |
| commit | e937c046801196d623284eb46d3d504235bfec66 (patch) | |
| tree | b62c99be3b6b03012e96f2085e060f7e311ac83e /src | |
| parent | e5c78c9d8329b5061826af825ca60393961bc6ff (diff) | |
| download | emacs-e937c046801196d623284eb46d3d504235bfec66.tar.gz emacs-e937c046801196d623284eb46d3d504235bfec66.zip | |
(struct glyph_row): New member overlay_arrow_bitmap.
It replaces the corresponding member from struct window, as a
window may now show multiple overlay arrows.
Remove member overlay_arrow_p, superseeded by overlay_arrow_bitmap.
Diffstat (limited to 'src')
| -rw-r--r-- | src/dispextern.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/dispextern.h b/src/dispextern.h index fa7d1f811fb..dcf37ceded1 100644 --- a/src/dispextern.h +++ b/src/dispextern.h | |||
| @@ -726,6 +726,11 @@ struct glyph_row | |||
| 726 | position of the next row. */ | 726 | position of the next row. */ |
| 727 | struct display_pos end; | 727 | struct display_pos end; |
| 728 | 728 | ||
| 729 | /* Non-zero means the overlay arrow bitmap is on this line. | ||
| 730 | -1 means use default overlay arrow bitmap, else | ||
| 731 | it specifies actual fringe bitmap number. */ | ||
| 732 | int overlay_arrow_bitmap; | ||
| 733 | |||
| 729 | /* Left fringe bitmap number (enum fringe_bitmap_type). */ | 734 | /* Left fringe bitmap number (enum fringe_bitmap_type). */ |
| 730 | unsigned left_user_fringe_bitmap : FRINGE_ID_BITS; | 735 | unsigned left_user_fringe_bitmap : FRINGE_ID_BITS; |
| 731 | 736 | ||
| @@ -764,9 +769,6 @@ struct glyph_row | |||
| 764 | unsigned truncated_on_left_p : 1; | 769 | unsigned truncated_on_left_p : 1; |
| 765 | unsigned truncated_on_right_p : 1; | 770 | unsigned truncated_on_right_p : 1; |
| 766 | 771 | ||
| 767 | /* 1 means the overlay arrow is on this line. */ | ||
| 768 | unsigned overlay_arrow_p : 1; | ||
| 769 | |||
| 770 | /* 1 means that this row displays a continued line, i.e. it has a | 772 | /* 1 means that this row displays a continued line, i.e. it has a |
| 771 | continuation mark at the right side. */ | 773 | continuation mark at the right side. */ |
| 772 | unsigned continued_p : 1; | 774 | unsigned continued_p : 1; |