aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
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 20ea07a6d5a..59b63c99333 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -3156,7 +3156,7 @@ apply_modifiers (modifiers, base)
3156 /* The click modifier never figures into cache indices. */ 3156 /* The click modifier never figures into cache indices. */
3157 cache = Fget (base, Qmodifier_cache); 3157 cache = Fget (base, Qmodifier_cache);
3158 XFASTINT (index) = (modifiers & ~click_modifier); 3158 XFASTINT (index) = (modifiers & ~click_modifier);
3159 entry = Fassq (index, cache); 3159 entry = assq_no_quit (index, cache);
3160 3160
3161 if (CONSP (entry)) 3161 if (CONSP (entry))
3162 new_symbol = XCONS (entry)->cdr; 3162 new_symbol = XCONS (entry)->cdr;