aboutsummaryrefslogtreecommitdiffstats
path: root/src/fileio.c
diff options
context:
space:
mode:
authorAndreas Schwab <[email protected]>1998-04-14 12:58:24 +0000
committerAndreas Schwab <[email protected]>1998-04-14 12:58:24 +0000
commitb266ae04d722c6ee06c62b949f7f3eba49788b14 (patch)
treec73cbc5b3efbed7f148ab97e654617e8e7e12d8a /src/fileio.c
parentb98ef0dcdbb75a0fc93e10259330e882017d1b03 (diff)
(Fwrite_region): Fix mixing of Lisp_Object and int.
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 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);