diff options
| author | Jim Blandy | 1992-09-29 16:01:03 +0000 |
|---|---|---|
| committer | Jim Blandy | 1992-09-29 16:01:03 +0000 |
| commit | 20218e2f8a29a2dc1479e2c933b9e72ded9937eb (patch) | |
| tree | 9338eaf1f687445f32c11e895a626e43b0d6825d /src/keymap.c | |
| parent | 533984a8ece9b13873d2e035b50f28811affb953 (diff) | |
| download | emacs-20218e2f8a29a2dc1479e2c933b9e72ded9937eb.tar.gz emacs-20218e2f8a29a2dc1479e2c933b9e72ded9937eb.zip | |
* keymap.c (access_keymap): Don't forget to QUIT while scanning
the keymap.
Diffstat (limited to 'src/keymap.c')
| -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) | |||
| 247 | return XVECTOR (binding)->contents[XINT (idx)]; | 247 | return XVECTOR (binding)->contents[XINT (idx)]; |
| 248 | break; | 248 | break; |
| 249 | } | 249 | } |
| 250 | |||
| 251 | QUIT; | ||
| 250 | } | 252 | } |
| 251 | } | 253 | } |
| 252 | 254 | ||