diff options
| author | Gerd Moellmann | 2000-07-11 19:57:18 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-07-11 19:57:18 +0000 |
| commit | 48b509fe7063368127c0f6cc375bd4ce41ec8781 (patch) | |
| tree | 27bd4cae17e6ec93a64c75af80bd39de288cdfc8 /src | |
| parent | 315aa1de5cfdadbe91bfc8a51cb061f98d08f7a3 (diff) | |
| download | emacs-48b509fe7063368127c0f6cc375bd4ce41ec8781.tar.gz emacs-48b509fe7063368127c0f6cc375bd4ce41ec8781.zip | |
(struct glyph_row): Add flag mouse_face_p.
Diffstat (limited to 'src')
| -rw-r--r-- | src/dispextern.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/dispextern.h b/src/dispextern.h index a50d30877e4..2fa2bf0caea 100644 --- a/src/dispextern.h +++ b/src/dispextern.h | |||
| @@ -686,6 +686,9 @@ struct glyph_row | |||
| 686 | /* 1 in a current row means this row overlaps others. */ | 686 | /* 1 in a current row means this row overlaps others. */ |
| 687 | unsigned overlapping_p : 1; | 687 | unsigned overlapping_p : 1; |
| 688 | 688 | ||
| 689 | /* 1 means some glyphs in this row are displayed in mouse-face. */ | ||
| 690 | unsigned mouse_face_p : 1; | ||
| 691 | |||
| 689 | /* Continuation lines width at the start of the row. */ | 692 | /* Continuation lines width at the start of the row. */ |
| 690 | int continuation_lines_width; | 693 | int continuation_lines_width; |
| 691 | }; | 694 | }; |