From: Richard M. Stallman Date: Sat, 26 Aug 1995 15:26:42 +0000 (+0000) Subject: (modifier_names): Add 4 bits to modifier bit positions. X-Git-Tag: emacs-19.34~2914 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f335fabe75a42813bf2190cc86cca43193f35414;p=emacs.git (modifier_names): Add 4 bits to modifier bit positions. --- 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) static char *modifier_names[] = { "up", "down", "drag", "click", "double", "triple", 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "alt", "super", "hyper", "shift", "control", "meta" }; #define NUM_MOD_NAMES (sizeof (modifier_names) / sizeof (modifier_names[0]))