diff options
| author | Stefan Monnier | 2008-03-27 20:04:37 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2008-03-27 20:04:37 +0000 |
| commit | a1567c45444f4eecf007d8c95c49914aafce5202 (patch) | |
| tree | 7344ce28ac07604797091a8d3d4b2402ff90af6c /src/coding.c | |
| parent | 30076589d34c643f3e750078fcbb5bb085eaf0c9 (diff) | |
| download | emacs-a1567c45444f4eecf007d8c95c49914aafce5202.tar.gz emacs-a1567c45444f4eecf007d8c95c49914aafce5202.zip | |
(decode_coding_object): Fix last change.
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 | { |