From: Richard M. Stallman Date: Sun, 14 Sep 1997 17:21:28 +0000 (+0000) Subject: (Finsert_file_contents): If a coding system is X-Git-Tag: emacs-20.1~23 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0de6b8f4a01dd0b4f4d15992f09bebc04c03fe95;p=emacs.git (Finsert_file_contents): If a coding system is specified explicitly on visiting a new file, set buffer-file-coding system of the new buffer to the specified one. --- diff --git a/src/fileio.c b/src/fileio.c index e23b74a1720..4636193e577 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -3164,6 +3164,8 @@ This does code conversion according to the value of\n\ report_file_error ("Opening input file", Fcons (orig_filename, Qnil)); st.st_mtime = -1; how_much = 0; + if (!NILP (Vcoding_system_for_read)) + current_buffer->buffer_file_coding_system = Vcoding_system_for_read; goto notfound; }