diff options
| author | Kenichi Handa | 1999-11-25 04:41:52 +0000 |
|---|---|---|
| committer | Kenichi Handa | 1999-11-25 04:41:52 +0000 |
| commit | 22d92d6b53541889e9bf6459eab091064e7040d9 (patch) | |
| tree | 7568e3b9f40e445e53c4f48746d3456f39d3e2ee /src | |
| parent | 3573735116ab9e977695148ca45a67530d87f249 (diff) | |
| download | emacs-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.c | 2 |
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 | ||