Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
31e0750e
Commit
31e0750e
authored
Dec 29, 2008
by
Dan Nicolaescu
Browse files
(struct face): Move lface and hash from the middle
of bitfields.
parent
bd7bbf29
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
7 deletions
+10
-7
src/ChangeLog
src/ChangeLog
+3
-0
src/dispextern.h
src/dispextern.h
+7
-7
No files found.
src/ChangeLog
View file @
31e0750e
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>
...
...
src/dispextern.h
View file @
31e0750e
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment