]> git.eshelyaron.com Git - emacs.git/commitdiff
(apply_modifiers): Use assq_no_quit.
authorRichard M. Stallman <rms@gnu.org>
Tue, 21 Jun 1994 19:47:44 +0000 (19:47 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 21 Jun 1994 19:47:44 +0000 (19:47 +0000)
src/keyboard.c

index 20ea07a6d5ab0c1a0d9e5e390194db1b407c2872..59b63c993335b557069f4790cb7e89e171089f19 100644 (file)
@@ -3156,7 +3156,7 @@ apply_modifiers (modifiers, base)
   /* 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;