aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/fileio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fileio.c b/src/fileio.c
index 7a8ddff0f3..d49d107b9f 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -4030,7 +4030,7 @@ to the file, instead of any buffer contents, and END is ignored.")
? XCONS (coding_systems)->cdr
: current_buffer->buffer_file_coding_system);
/* Confirm that VAL can surely encode the current region. */
- if (Ffboundp (Vselect_safe_coding_system_function))
+ if (!NILP (Ffboundp (Vselect_safe_coding_system_function)))
val = call3 (Vselect_safe_coding_system_function, start, end, val);
}
setup_coding_system (Fcheck_coding_system (val), &coding);