diff options
| author | Richard M. Stallman | 1994-06-21 19:47:44 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-06-21 19:47:44 +0000 |
| commit | 697e4895a2d85c1b5170cddc275aa734fb5b38b3 (patch) | |
| tree | 15879944cb7576f45aef8a4b0ae3dea54ae6d668 /src | |
| parent | 21a0d7a0004522005fa603ab331de2c650ee9b7a (diff) | |
| download | emacs-697e4895a2d85c1b5170cddc275aa734fb5b38b3.tar.gz emacs-697e4895a2d85c1b5170cddc275aa734fb5b38b3.zip | |
(apply_modifiers): Use assq_no_quit.
Diffstat (limited to 'src')
| -rw-r--r-- | src/keyboard.c | 2 |
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; |