diff options
Diffstat (limited to 'src/coding.c')
| -rw-r--r-- | src/coding.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/coding.c b/src/coding.c index 6848fa674d3..01a678e2eaf 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -7030,10 +7030,10 @@ decode_coding_object (coding, src_object, from, from_byte, to, to_byte, | |||
| 7030 | || (! NILP (CODING_ATTR_POST_READ (attrs)) | 7030 | || (! NILP (CODING_ATTR_POST_READ (attrs)) |
| 7031 | && NILP (dst_object))) | 7031 | && NILP (dst_object))) |
| 7032 | { | 7032 | { |
| 7033 | coding->dst_object = code_conversion_save (1, 1); | 7033 | coding->dst_multibyte = !CODING_FOR_UNIBYTE (coding); |
| 7034 | coding->dst_object = code_conversion_save (1, coding->dst_multibyte); | ||
| 7034 | coding->dst_pos = BEG; | 7035 | coding->dst_pos = BEG; |
| 7035 | coding->dst_pos_byte = BEG_BYTE; | 7036 | coding->dst_pos_byte = BEG_BYTE; |
| 7036 | coding->dst_multibyte = !CODING_FOR_UNIBYTE (coding); | ||
| 7037 | } | 7037 | } |
| 7038 | else if (BUFFERP (dst_object)) | 7038 | else if (BUFFERP (dst_object)) |
| 7039 | { | 7039 | { |