diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/lisp.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lisp.h b/src/lisp.h index 5920245eb68..fdf351553d4 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -1043,6 +1043,10 @@ typedef unsigned char UCHAR; | |||
| 1043 | #define CHAR_CTL (0x4000000) | 1043 | #define CHAR_CTL (0x4000000) |
| 1044 | #define CHAR_META (0x8000000) | 1044 | #define CHAR_META (0x8000000) |
| 1045 | 1045 | ||
| 1046 | #define CHAR_MODIFIER_MASK \ | ||
| 1047 | (CHAR_ALT | CHAR_SUPER | CHAR_HYPER | CHAR_SHIFT | CHAR_CTL | CHAR_META) | ||
| 1048 | |||
| 1049 | |||
| 1046 | /* Actually, the current Emacs uses 19 bits for the character value | 1050 | /* Actually, the current Emacs uses 19 bits for the character value |
| 1047 | itself. */ | 1051 | itself. */ |
| 1048 | #define CHARACTERBITS 19 | 1052 | #define CHARACTERBITS 19 |