aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJim Blandy1993-04-08 00:14:50 +0000
committerJim Blandy1993-04-08 00:14:50 +0000
commite7062f1927670062be0149ff07722c2db7ecd95a (patch)
treea43876950cea3620c6a5ce84f31d3dd464df827c /src
parent63927c41919d69500426567669896df7dda65ba5 (diff)
downloademacs-e7062f1927670062be0149ff07722c2db7ecd95a.tar.gz
emacs-e7062f1927670062be0149ff07722c2db7ecd95a.zip
* keyboard.c (apply_modifiers): Fix typo in sanity check.
Diffstat (limited to 'src')
-rw-r--r--src/keyboard.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index 27a6c421ad9..8f4b9b4425f 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -2531,7 +2531,7 @@ apply_modifiers (modifiers, base)
2531 2531
2532 /* The click modifier never figures into cache indices. */ 2532 /* The click modifier never figures into cache indices. */
2533 cache = Fget (base, Qmodifier_cache); 2533 cache = Fget (base, Qmodifier_cache);
2534 if (index & ~((1<<VALBITS) - 1)) 2534 if (modifiers & ~((1<<VALBITS) - 1))
2535 abort (); 2535 abort ();
2536 XFASTINT (index) = (modifiers & ~click_modifier); 2536 XFASTINT (index) = (modifiers & ~click_modifier);
2537 entry = Fassq (index, cache); 2537 entry = Fassq (index, cache);