diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/dispextern.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dispextern.h b/src/dispextern.h index 44a1a04d6c1..a067bcf72f8 100644 --- a/src/dispextern.h +++ b/src/dispextern.h | |||
| @@ -373,9 +373,9 @@ struct glyph | |||
| 373 | character is multibyte, return -1 as we can't use glyph table for a | 373 | character is multibyte, return -1 as we can't use glyph table for a |
| 374 | multibyte character. */ | 374 | multibyte character. */ |
| 375 | 375 | ||
| 376 | #define GLYPH_FROM_CHAR_GLYPH(GLYPH) \ | 376 | #define GLYPH_FROM_CHAR_GLYPH(GLYPH) \ |
| 377 | ((GLYPH).u.ch < 256 \ | 377 | ((GLYPH).u.ch < 256 \ |
| 378 | ? ((GLYPH).u.ch | ((GLYPH).face_id << 8)) \ | 378 | ? ((GLYPH).u.ch | ((GLYPH).face_id << CHARACTERBITS)) \ |
| 379 | : -1) | 379 | : -1) |
| 380 | 380 | ||
| 381 | /* Is GLYPH a padding glyph? */ | 381 | /* Is GLYPH a padding glyph? */ |