summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/lisp.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lisp.h b/src/lisp.h
index 399053fc156..69f0d2ffd9c 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -892,8 +892,7 @@ typedef unsigned char UCHAR;
/* The FAST macros assume that we already know we're in an X window. */
/* Given a character code and a face ID, return the appropriate glyph. */
-#define FAST_MAKE_GLYPH(CHAR, FACE) ((unsigned char) (CHAR) | \
- ((FACE) << CHARACTERBITS))
+#define FAST_MAKE_GLYPH(char, face) ((char) | ((face) << CHARACTERBITS))
/* Return a glyph's character code. */
#define FAST_GLYPH_CHAR(glyph) ((glyph) & GLYPH_MASK_CHAR)