aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann <[email protected]>2000-07-26 14:10:02 +0000
committerGerd Moellmann <[email protected]>2000-07-26 14:10:02 +0000
commit4728a55337f5c9a3fcd48d638c42e8cb5a8e9be8 (patch)
tree432423a68ba9a0a8fe061ec37ed52a1a690576ba /src
parent8ea64148b5e1d22b3346a520ef4cf8dcb6ab43dd (diff)
(GLYPH_FROM_CHAR_GLYPH): Use CHARACTERBITS bits
for the character code.
Diffstat (limited to 'src')
-rw-r--r--src/dispextern.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dispextern.h b/src/dispextern.h
index 44a1a04d6c..a067bcf72f 100644
--- a/src/dispextern.h
+++ b/src/dispextern.h
@@ -373,9 +373,9 @@ struct glyph
character is multibyte, return -1 as we can't use glyph table for a
multibyte character. */
-#define GLYPH_FROM_CHAR_GLYPH(GLYPH) \
- ((GLYPH).u.ch < 256 \
- ? ((GLYPH).u.ch | ((GLYPH).face_id << 8)) \
+#define GLYPH_FROM_CHAR_GLYPH(GLYPH) \
+ ((GLYPH).u.ch < 256 \
+ ? ((GLYPH).u.ch | ((GLYPH).face_id << CHARACTERBITS)) \
: -1)
/* Is GLYPH a padding glyph? */