aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1995-08-26 15:26:42 +0000
committerRichard M. Stallman1995-08-26 15:26:42 +0000
commitf335fabe75a42813bf2190cc86cca43193f35414 (patch)
tree1c96f0985607a230ea1f9f8de417302cd482e09b
parentcf3765276562bac7108ff3e7bf362d263adda594 (diff)
downloademacs-f335fabe75a42813bf2190cc86cca43193f35414.tar.gz
emacs-f335fabe75a42813bf2190cc86cca43193f35414.zip
(modifier_names): Add 4 bits to modifier bit positions.
-rw-r--r--src/keyboard.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index db0c6881380..77ed7a3ab3e 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -3650,7 +3650,7 @@ apply_modifiers_uncached (modifiers, base, base_len)
3650static char *modifier_names[] = 3650static char *modifier_names[] =
3651{ 3651{
3652 "up", "down", "drag", "click", "double", "triple", 0, 0, 3652 "up", "down", "drag", "click", "double", "triple", 0, 0,
3653 0, 0, 0, 0, 0, 0, 0, 0, 3653 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
3654 0, 0, "alt", "super", "hyper", "shift", "control", "meta" 3654 0, 0, "alt", "super", "hyper", "shift", "control", "meta"
3655}; 3655};
3656#define NUM_MOD_NAMES (sizeof (modifier_names) / sizeof (modifier_names[0])) 3656#define NUM_MOD_NAMES (sizeof (modifier_names) / sizeof (modifier_names[0]))