changeset 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 d4b5f4dd9c51
children 6d0a448be1ec
files src/keyboard.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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;