* src/fileio.c (Finsert_file_contents):
* src/window.c (replace_buffer_in_windows): Call Fboundp, not
boundp.
/* Decode file format. Don't do this if Qformat_decode is not
bound, which can happen when called early during loadup. */
- if (inserted > 0 && !NILP (Fboundp (Qformat_decode)))
+ if (inserted > 0 && !NILP (Ffboundp (Qformat_decode)))
{
/* Don't run point motion or modification hooks when decoding. */
specpdl_ref count1 = SPECPDL_INDEX ();
{
/* When kill-buffer is called early during loadup, this function is
undefined. */
- if (!NILP (Fboundp (Qreplace_buffer_in_windows)))
+ if (!NILP (Ffboundp (Qreplace_buffer_in_windows)))
call1 (Qreplace_buffer_in_windows, buffer);
}