aboutsummaryrefslogtreecommitdiffstats
path: root/src/dispextern.h
diff options
context:
space:
mode:
authorGerd Moellmann2001-10-31 11:12:09 +0000
committerGerd Moellmann2001-10-31 11:12:09 +0000
commitdd387b25cddcdc7437a7abe5fbf3637a92e8d54b (patch)
treed98a60ce4160c034324f5187117670a64781477e /src/dispextern.h
parent28a072fe30aaad1c25e122e93ae6ab788c5f9988 (diff)
downloademacs-dd387b25cddcdc7437a7abe5fbf3637a92e8d54b.tar.gz
emacs-dd387b25cddcdc7437a7abe5fbf3637a92e8d54b.zip
(struct face) <colors_copied_bitwise_p>: New
member.
Diffstat (limited to 'src/dispextern.h')
-rw-r--r--src/dispextern.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/dispextern.h b/src/dispextern.h
index 820f986179d..892025e41e7 100644
--- a/src/dispextern.h
+++ b/src/dispextern.h
@@ -1313,6 +1313,11 @@ struct face
1313 unsigned tty_reverse_p : 1; 1313 unsigned tty_reverse_p : 1;
1314 unsigned tty_blinking_p : 1; 1314 unsigned tty_blinking_p : 1;
1315 1315
1316 /* 1 means that colors of this face may not be freed because they
1317 have been copied bitwise from a base face (see
1318 realize_x_face). */
1319 unsigned colors_copied_bitwise_p : 1;
1320
1316 /* Next and previous face in hash collision list of face cache. */ 1321 /* Next and previous face in hash collision list of face cache. */
1317 struct face *next, *prev; 1322 struct face *next, *prev;
1318 1323