aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1997-07-25 18:12:53 +0000
committerRichard M. Stallman1997-07-25 18:12:53 +0000
commit68788cecc4d58673c02b501af1c034eea08350e7 (patch)
treea5391bfabdcfc54ae1198d6cbb03e710d027363a /src
parent3c0c48a737b96dec9d999b060224e1199fb1b4c1 (diff)
downloademacs-68788cecc4d58673c02b501af1c034eea08350e7.tar.gz
emacs-68788cecc4d58673c02b501af1c034eea08350e7.zip
(Fwrite_region): Fix previous change.
Diffstat (limited to 'src')
-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.")
3829 else if (!NILP (Vcoding_system_for_write)) 3829 else if (!NILP (Vcoding_system_for_write))
3830 val = Vcoding_system_for_write; 3830 val = Vcoding_system_for_write;
3831 else if (NILP (current_buffer->enable_multibyte_characters)) 3831 else if (NILP (current_buffer->enable_multibyte_characters))
3832 val = (NILP (Flocal_variable_p (Qbuffer_file_coding_system)) 3832 val = (NILP (Flocal_variable_p (Qbuffer_file_coding_system, Qnil))
3833 ? Qnil 3833 ? Qnil
3834 : Fsymbol_value (Qbuffer_file_coding_system)); 3834 : Fsymbol_value (Qbuffer_file_coding_system));
3835 else 3835 else