aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa1999-11-25 04:41:52 +0000
committerKenichi Handa1999-11-25 04:41:52 +0000
commit22d92d6b53541889e9bf6459eab091064e7040d9 (patch)
tree7568e3b9f40e445e53c4f48746d3456f39d3e2ee /src
parent3573735116ab9e977695148ca45a67530d87f249 (diff)
downloademacs-22d92d6b53541889e9bf6459eab091064e7040d9.tar.gz
emacs-22d92d6b53541889e9bf6459eab091064e7040d9.zip
(Finsert_file_contents): Set buffer-file-coding-system
of the current buffer via Fset.
Diffstat (limited to 'src')
-rw-r--r--src/fileio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fileio.c b/src/fileio.c
index a91b2680ae8..7b3084c7aa3 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -3412,7 +3412,7 @@ actually used.")
3412 st.st_mtime = -1; 3412 st.st_mtime = -1;
3413 how_much = 0; 3413 how_much = 0;
3414 if (!NILP (Vcoding_system_for_read)) 3414 if (!NILP (Vcoding_system_for_read))
3415 current_buffer->buffer_file_coding_system = Vcoding_system_for_read; 3415 Fset (Qbuffer_file_coding_system, Vcoding_system_for_read);
3416 goto notfound; 3416 goto notfound;
3417 } 3417 }
3418 3418