diff options
| author | Stefan Monnier | 2008-03-27 20:24:55 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2008-03-27 20:24:55 +0000 |
| commit | 0154725e48b709be3cd06628fccaa2e4f46af441 (patch) | |
| tree | 5fd850418e454a3898319122c464c3e1e988c9e0 /src/coding.c | |
| parent | a1567c45444f4eecf007d8c95c49914aafce5202 (diff) | |
| download | emacs-0154725e48b709be3cd06628fccaa2e4f46af441.tar.gz emacs-0154725e48b709be3cd06628fccaa2e4f46af441.zip | |
(decode_coding_object): Revert part of last change.
Diffstat (limited to 'src/coding.c')
| -rw-r--r-- | src/coding.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/coding.c b/src/coding.c index 01a678e2eaf..d862ed133ab 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -7048,7 +7048,10 @@ decode_coding_object (coding, src_object, from, from_byte, to, to_byte, | |||
| 7048 | { | 7048 | { |
| 7049 | code_conversion_save (0, 0); | 7049 | code_conversion_save (0, 0); |
| 7050 | coding->dst_object = Qnil; | 7050 | coding->dst_object = Qnil; |
| 7051 | coding->dst_multibyte = !CODING_FOR_UNIBYTE (coding); | 7051 | /* Most callers presume this will return a multibyte result, and they |
| 7052 | won't use `binary' or `raw-text' anyway, so let's not worry about | ||
| 7053 | CODING_FOR_UNIBYTE. */ | ||
| 7054 | coding->dst_multibyte = Qt; | ||
| 7052 | } | 7055 | } |
| 7053 | 7056 | ||
| 7054 | decode_coding (coding); | 7057 | decode_coding (coding); |