1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-03-15 11:21:19 -07:00

* keymap.c (access_keymap): Don't forget to QUIT while scanning

the keymap.
This commit is contained in:
Jim Blandy 1992-09-29 16:01:03 +00:00
parent 533984a8ec
commit 20218e2f8a

View file

@ -247,6 +247,8 @@ access_keymap (map, idx)
return XVECTOR (binding)->contents[XINT (idx)];
break;
}
QUIT;
}
}