diff options
| author | Kenichi Handa <handa@m17n.org> | 2000-06-10 00:35:26 +0000 |
|---|---|---|
| committer | Kenichi Handa <handa@m17n.org> | 2000-06-10 00:35:26 +0000 |
| commit | 6db43875f53b369c0bccecec55465fe2abe6e7dc (patch) | |
| tree | 2959d1bbdaa5466c573d8ca4ea4fcdae45659a9c | |
| parent | 88b837a212a031aa9bfce585e4fcf5d0a38f6867 (diff) | |
| download | emacs-6db43875f53b369c0bccecec55465fe2abe6e7dc.tar.gz | |
(Finsert_file_contents): Be sure to setup src_multibyte
and dst_multibyte members of coding.
| -rw-r--r-- | src/fileio.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/fileio.c b/src/fileio.c index 2f2c49252a9..a030bf1e966 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -4204,6 +4204,9 @@ actually used.") /* We must suppress all character code conversion except for end-of-line conversion. */ setup_raw_text_coding_system (&coding); + coding.src_multibyte = 0; + coding.dst_multibyte + = !NILP (current_buffer->enable_multibyte_characters); } if (!NILP (visit) |
