1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-13 06:50:39 -08:00

(Finsert_char): Check QUIT.

This commit is contained in:
Richard M. Stallman 1997-06-09 18:21:52 +00:00
parent b4577c63a7
commit 54e42e2dbd

View file

@ -1381,6 +1381,7 @@ from adjoining text, if those properties are sticky.")
string[i] = str[i % len];
while (n >= strlen)
{
QUIT;
if (!NILP (inherit))
insert_and_inherit (string, strlen);
else