emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

feature/android f57c64925bc 1/2: Fix typos in Android port


From: Po Lu
Subject: feature/android f57c64925bc 1/2: Fix typos in Android port
Date: Wed, 15 Mar 2023 06:29:31 -0400 (EDT)

branch: feature/android
commit f57c64925bc16fa967a86ffe424396a395e448fb
Author: Robert Pluim <rpluim@gmail.com>
Commit: Po Lu <luangruo@yahoo.com>

    Fix typos in Android port
    
    * src/fileio.c (Finsert_file_contents):
    * src/window.c (replace_buffer_in_windows): Call Fboundp, not
    boundp.
---
 src/fileio.c | 2 +-
 src/window.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

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);
 }
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]