1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-05 11:45:45 +00:00

(Fplist_get): Don't QUIT is interrupt_input_blocked.

This commit is contained in:
Gerd Moellmann 2001-04-11 12:58:21 +00:00
parent 96a48d43d3
commit ec2423c930
2 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2001-04-11 Gerd Moellmann <gerd@gnu.org>
* fns.c (Fplist_get): Don't QUIT if interrupt_input_blocked.
2001-04-10 Gerd Moellmann <gerd@gnu.org>
* fns.c (Fcompare_strings): Fix return values.

View File

@ -1872,7 +1872,11 @@ one of the properties on the list.")
{
if (EQ (prop, XCAR (tail)))
return XCAR (XCDR (tail));
QUIT;
/* This function can be called asynchronously
(setup_coding_system). Don't QUIT in that case. */
if (!interrupt_input_blocked)
QUIT;
}
if (!NILP (tail))
@ -1915,6 +1919,7 @@ The PLIST is modified by side effects.")
Fsetcar (XCDR (tail), val);
return plist;
}
prev = tail;
QUIT;
}