Mercurial > emacs
comparison src/fileio.c @ 18986:d22331526e2d
(Fwrite_region): Fix previous change.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Fri, 25 Jul 1997 18:12:53 +0000 |
parents | 9f5b8d5eed29 |
children | 299ae0a2c4fd |
comparison
equal
deleted
inserted
replaced
18985:3fa26ad85f77 | 18986:d22331526e2d |
---|---|
3827 if (auto_saving) | 3827 if (auto_saving) |
3828 val = Qnil; | 3828 val = Qnil; |
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 |
3836 { | 3836 { |
3837 Lisp_Object args[7], coding_systems; | 3837 Lisp_Object args[7], coding_systems; |