diff src/keyboard.c @ 7999:f1837249c67f

(apply_modifiers): Use assq_no_quit.
author Richard M. Stallman <rms@gnu.org>
date Tue, 21 Jun 1994 19:47:44 +0000
parents a1404ed5d012
children 7cc73292df36
line wrap: on
line diff
--- a/src/keyboard.c	Tue Jun 21 19:46:07 1994 +0000
+++ b/src/keyboard.c	Tue Jun 21 19:47:44 1994 +0000
@@ -3156,7 +3156,7 @@
   /* The click modifier never figures into cache indices.  */
   cache = Fget (base, Qmodifier_cache);
   XFASTINT (index) = (modifiers & ~click_modifier);
-  entry = Fassq (index, cache);
+  entry = assq_no_quit (index, cache);
 
   if (CONSP (entry))
     new_symbol = XCONS (entry)->cdr;