aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKim F. Storm2004-04-26 22:39:21 +0000
committerKim F. Storm2004-04-26 22:39:21 +0000
commit7293ac29842d90126bc6d4a30f4da95094d44acc (patch)
treea73c39666187284e4ccdaa8cecdb237e039b5281 /src
parent06859ebdf6b624ccf1a0443b1ac469af679da237 (diff)
downloademacs-7293ac29842d90126bc6d4a30f4da95094d44acc.tar.gz
emacs-7293ac29842d90126bc6d4a30f4da95094d44acc.zip
(struct it): New member use_default_face.
Diffstat (limited to 'src')
-rw-r--r--src/dispextern.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/dispextern.h b/src/dispextern.h
index 746a5b2906f..387b92a265c 100644
--- a/src/dispextern.h
+++ b/src/dispextern.h
@@ -1924,9 +1924,12 @@ struct it
1924 unsigned face_before_selective_p : 1; 1924 unsigned face_before_selective_p : 1;
1925 1925
1926 /* If 1, adjust current glyph so it does not increase current row 1926 /* If 1, adjust current glyph so it does not increase current row
1927 descent/ascent. */ 1927 descent/ascent (line-height property). Reset after this glyph. */
1928 unsigned constrain_row_ascent_descent_p : 1; 1928 unsigned constrain_row_ascent_descent_p : 1;
1929 1929
1930 /* If 1, show current glyph in default face. Reset after this glyph. */
1931 unsigned use_default_face : 1;
1932
1930 /* The ID of the default face to use. One of DEFAULT_FACE_ID, 1933 /* The ID of the default face to use. One of DEFAULT_FACE_ID,
1931 MODE_LINE_FACE_ID, etc, depending on what we are displaying. */ 1934 MODE_LINE_FACE_ID, etc, depending on what we are displaying. */
1932 int base_face_id; 1935 int base_face_id;