From 719c80be4339bc3ed564640b95e49c161c6b7dfb Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Thu, 27 Feb 1997 08:01:34 +0000 Subject: (Finsert_file_contents, Fwrite_region): Do not perform character code conversion if enable-multibyte-characters is nil. --- src/fileio.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/fileio.c') diff --git a/src/fileio.c b/src/fileio.c index c7c0111dbad..b925c18c41b 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -3059,7 +3059,9 @@ This does code conversion according to the value of\n\ /* Decide the coding-system of the file. */ { Lisp_Object val = Vcoding_system_for_read; - if (NILP (val)) + if (NILP (current_buffer->enable_multibyte_characters)) + val = Qnil; + else if (NILP (val)) { Lisp_Object args[6], coding_systems; @@ -3622,7 +3624,7 @@ This does code conversion according to the value of\n\ { Lisp_Object val; - if (auto_saving) + if (auto_saving || NILP (current_buffer->enable_multibyte_characters)) val = Qnil; else if (!NILP (Vcoding_system_for_write)) val = Vcoding_system_for_write; -- cgit v1.2.1