From: Gerd Moellmann Date: Tue, 11 Jul 2000 19:57:18 +0000 (+0000) Subject: (struct glyph_row): Add flag mouse_face_p. X-Git-Tag: emacs-pretest-21.0.90~2883 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=48b509fe7063368127c0f6cc375bd4ce41ec8781;p=emacs.git (struct glyph_row): Add flag mouse_face_p. --- 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 /* 1 in a current row means this row overlaps others. */ unsigned overlapping_p : 1; + /* 1 means some glyphs in this row are displayed in mouse-face. */ + unsigned mouse_face_p : 1; + /* Continuation lines width at the start of the row. */ int continuation_lines_width; };