aboutsummaryrefslogtreecommitdiffstats
path: root/src/keymap.c
diff options
context:
space:
mode:
authorJim Blandy1992-09-29 16:01:03 +0000
committerJim Blandy1992-09-29 16:01:03 +0000
commit20218e2f8a29a2dc1479e2c933b9e72ded9937eb (patch)
tree9338eaf1f687445f32c11e895a626e43b0d6825d /src/keymap.c
parent533984a8ece9b13873d2e035b50f28811affb953 (diff)
downloademacs-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.c2
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