mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-30 19:53:09 +00:00
(struct face): Move lface and hash from the middle
of bitfields.
This commit is contained in:
parent
bd7bbf294e
commit
31e0750eac
@ -1,5 +1,8 @@
|
||||
2008-12-29 Dan Nicolaescu <dann@ics.uci.edu>
|
||||
|
||||
* dispextern.h (struct face): Move lface and hash from the middle
|
||||
of bitfields.
|
||||
|
||||
* Makefile.in (INTERVALS_H): Rename from INTERVAL_SRC, update all users.
|
||||
|
||||
2008-12-29 Dan Nicolaescu <dann@ics.uci.edu>
|
||||
|
@ -1524,13 +1524,6 @@ struct face
|
||||
drawing shadows. */
|
||||
unsigned use_box_color_for_shadows_p : 1;
|
||||
|
||||
/* The Lisp face attributes this face realizes. All attributes
|
||||
in this vector are non-nil. */
|
||||
Lisp_Object lface[LFACE_VECTOR_SIZE];
|
||||
|
||||
/* The hash value of this face. */
|
||||
unsigned hash;
|
||||
|
||||
/* Non-zero if text in this face should be underlined, overlined,
|
||||
strike-through or have a box drawn around it. */
|
||||
unsigned underline_p : 1;
|
||||
@ -1580,6 +1573,13 @@ struct face
|
||||
unsigned synth_ital : 1;
|
||||
#endif
|
||||
|
||||
/* The Lisp face attributes this face realizes. All attributes
|
||||
in this vector are non-nil. */
|
||||
Lisp_Object lface[LFACE_VECTOR_SIZE];
|
||||
|
||||
/* The hash value of this face. */
|
||||
unsigned hash;
|
||||
|
||||
/* Next and previous face in hash collision list of face cache. */
|
||||
struct face *next, *prev;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user