+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.
{
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))
Fsetcar (XCDR (tail), val);
return plist;
}
+
prev = tail;
QUIT;
}