diff options
author | Jim Blandy <jimb@redhat.com> | 1992-09-29 16:01:03 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1992-09-29 16:01:03 +0000 |
commit | 20218e2f8a29a2dc1479e2c933b9e72ded9937eb (patch) | |
tree | 9338eaf1f687445f32c11e895a626e43b0d6825d /src | |
parent | 533984a8ece9b13873d2e035b50f28811affb953 (diff) | |
download | emacs-20218e2f8a29a2dc1479e2c933b9e72ded9937eb.tar.gz |
* keymap.c (access_keymap): Don't forget to QUIT while scanning
the keymap.
Diffstat (limited to 'src')
-rw-r--r-- | src/keymap.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/keymap.c b/src/keymap.c index 98b9d8f06cf..22846bb7eff 100644 --- a/src/keymap.c +++ b/src/keymap.c @@ -247,6 +247,8 @@ access_keymap (map, idx) return XVECTOR (binding)->contents[XINT (idx)]; break; } + + QUIT; } } |