From: Robert Pluim Date: Wed, 15 Mar 2023 10:27:29 +0000 (+0800) Subject: Fix typos in Android port X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f57c64925bc16fa967a86ffe424396a395e448fb;p=emacs.git Fix typos in Android port * src/fileio.c (Finsert_file_contents): * src/window.c (replace_buffer_in_windows): Call Fboundp, not boundp. --- diff --git a/src/fileio.c b/src/fileio.c index 99f710ccbf0..5153aeae248 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -5004,7 +5004,7 @@ by calling `format-decode', which see. */) /* 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 (); diff --git a/src/window.c b/src/window.c index 9a29ecb8807..8c42d3cdd0c 100644 --- a/src/window.c +++ b/src/window.c @@ -3516,7 +3516,7 @@ replace_buffer_in_windows (Lisp_Object buffer) { /* 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); }