aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2000-07-11 19:57:18 +0000
committerGerd Moellmann2000-07-11 19:57:18 +0000
commit48b509fe7063368127c0f6cc375bd4ce41ec8781 (patch)
tree27bd4cae17e6ec93a64c75af80bd39de288cdfc8 /src
parent315aa1de5cfdadbe91bfc8a51cb061f98d08f7a3 (diff)
downloademacs-48b509fe7063368127c0f6cc375bd4ce41ec8781.tar.gz
emacs-48b509fe7063368127c0f6cc375bd4ce41ec8781.zip
(struct glyph_row): Add flag mouse_face_p.
Diffstat (limited to 'src')
-rw-r--r--src/dispextern.h3
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};