summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-07-25 18:12:53 +0000
committerRichard M. Stallman <rms@gnu.org>1997-07-25 18:12:53 +0000
commit5ae52e35f9e4ffaf0eba8f2116cdd116b9553c39 (patch)
tree7fcbef0b11ddff299f24f66af96183bc528e650f
parent36c4b2adbc2f34a52efad94fca31f47ede1887c4 (diff)
downloademacs-5ae52e35f9e4ffaf0eba8f2116cdd116b9553c39.tar.gz
(Fwrite_region): Fix previous change.
-rw-r--r--src/fileio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fileio.c b/src/fileio.c
index 119c6d1b200..3540229cff7 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -3829,7 +3829,7 @@ to the file, instead of any buffer contents, and END is ignored.")
else if (!NILP (Vcoding_system_for_write))
val = Vcoding_system_for_write;
else if (NILP (current_buffer->enable_multibyte_characters))
- val = (NILP (Flocal_variable_p (Qbuffer_file_coding_system))
+ val = (NILP (Flocal_variable_p (Qbuffer_file_coding_system, Qnil))
? Qnil
: Fsymbol_value (Qbuffer_file_coding_system));
else