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
52b1821d
Commit
52b1821d
authored
May 23, 1993
by
Jim Blandy
Browse files
* lisp.h (GLYPH_FACE): Remember that the face portion of a glyph
can be 24 bits, not just eight.
parent
ef7054f5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/lisp.h
src/lisp.h
+1
-1
No files found.
src/lisp.h
View file @
52b1821d
...
...
@@ -606,7 +606,7 @@ typedef unsigned char UCHAR;
#define GLYPH_CHAR(glyph) ((glyph) & 0xff)
/* Return a glyph's face ID. */
#define GLYPH_FACE(glyph) (((glyph) >> 8) &
0xff
)
#define GLYPH_FACE(glyph) (((glyph) >> 8) &
((1 << 24) - 1)
)
/* Data type checking */
...
...
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