aboutsummaryrefslogtreecommitdiffstats
path: root/src/lisp.h
diff options
context:
space:
mode:
authorKenichi Handa <[email protected]>1999-08-13 12:55:11 +0000
committerKenichi Handa <[email protected]>1999-08-13 12:55:11 +0000
commit048151c1c1d14614b5815bdbd8cc22795f08aac4 (patch)
treeb0ed97501000b44e658bb5bf777c66c34483dee8 /src/lisp.h
parent164d590d5c570746fd0f29985ad0dc7a2d94b259 (diff)
(CHAR_MODIFIER_MASK): New macro.
Diffstat (limited to 'src/lisp.h')
-rw-r--r--src/lisp.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lisp.h b/src/lisp.h
index 5920245eb6..fdf351553d 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -1043,6 +1043,10 @@ typedef unsigned char UCHAR;
#define CHAR_CTL (0x4000000)
#define CHAR_META (0x8000000)
+#define CHAR_MODIFIER_MASK \
+ (CHAR_ALT | CHAR_SUPER | CHAR_HYPER | CHAR_SHIFT | CHAR_CTL | CHAR_META)
+
+
/* Actually, the current Emacs uses 19 bits for the character value
itself. */
#define CHARACTERBITS 19