]> git.eshelyaron.com Git - emacs.git/commitdiff
(struct it): New member use_default_face.
authorKim F. Storm <storm@cua.dk>
Mon, 26 Apr 2004 22:39:21 +0000 (22:39 +0000)
committerKim F. Storm <storm@cua.dk>
Mon, 26 Apr 2004 22:39:21 +0000 (22:39 +0000)
src/dispextern.h

index 746a5b2906f79e2135270c35403177a0618bd9f4..387b92a265ca9d352c37351136550543e399f464 100644 (file)
@@ -1924,9 +1924,12 @@ struct it
   unsigned face_before_selective_p : 1;
 
   /* If 1, adjust current glyph so it does not increase current row
-     descent/ascent.  */
+     descent/ascent (line-height property).  Reset after this glyph.  */
   unsigned constrain_row_ascent_descent_p : 1;
 
+  /* If 1, show current glyph in default face.  Reset after this glyph.  */
+  unsigned use_default_face : 1;
+
   /* The ID of the default face to use.  One of DEFAULT_FACE_ID,
      MODE_LINE_FACE_ID, etc, depending on what we are displaying.  */
   int base_face_id;