summaryrefslogtreecommitdiff
path: root/src/fileio.c
diff options
context:
space:
mode:
authorRobert Pluim <rpluim@gmail.com>2023-03-15 18:27:29 +0800
committerPo Lu <luangruo@yahoo.com>2023-03-15 18:27:29 +0800
commitf57c64925bc16fa967a86ffe424396a395e448fb (patch)
tree4cf4d601da2416b925b62ab2b5465d0d5baeb4f4 /src/fileio.c
parentaf7f0b6f9b3bab0d672953dfe9df9dc667287434 (diff)
downloademacs-f57c64925bc16fa967a86ffe424396a395e448fb.tar.gz
Fix typos in Android port
* src/fileio.c (Finsert_file_contents): * src/window.c (replace_buffer_in_windows): Call Fboundp, not boundp.
Diffstat (limited to 'src/fileio.c')
-rw-r--r--src/fileio.c2
1 files changed, 1 insertions, 1 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 ();