character code conversion if enable-multibyte-characters is nil.
/* 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;
{
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;