summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1992-09-29 16:01:03 +0000
committerJim Blandy <jimb@redhat.com>1992-09-29 16:01:03 +0000
commit20218e2f8a29a2dc1479e2c933b9e72ded9937eb (patch)
tree9338eaf1f687445f32c11e895a626e43b0d6825d /src
parent533984a8ece9b13873d2e035b50f28811affb953 (diff)
downloademacs-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.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)
return XVECTOR (binding)->contents[XINT (idx)];
break;
}
+
+ QUIT;
}
}