]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix typos in Android port
authorRobert Pluim <rpluim@gmail.com>
Wed, 15 Mar 2023 10:27:29 +0000 (18:27 +0800)
committerPo Lu <luangruo@yahoo.com>
Wed, 15 Mar 2023 10:27:29 +0000 (18:27 +0800)
* src/fileio.c (Finsert_file_contents):
* src/window.c (replace_buffer_in_windows): Call Fboundp, not
boundp.

src/fileio.c
src/window.c

index 99f710ccbf0bd751e96b13cc274099cd4f85b68f..5153aeae24897bf7995f8488d78d8952f081fd41 100644 (file)
@@ -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 ();
index 9a29ecb8807162bdfbb89728a9065209cbb62d92..8c42d3cdd0c29e1faddfa94c29a075011366bf4a 100644 (file)
@@ -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);
 }