From fc1f2c6478ff6796c050b5d22bdbca59893b937f Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 14 Sep 1997 17:21:28 +0000 Subject: [PATCH] (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. --- src/fileio.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/fileio.c b/src/fileio.c index e23b74a17208..4636193e577e 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; }