comparison src/coding.c @ 93322:3b82aab9d8fc

(decode_coding_object): Revert part of last change.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Thu, 27 Mar 2008 20:24:55 +0000
parents c3fe9ef79b56
children 06e93ffa2e9f
comparison
equal deleted inserted replaced
93321:c3fe9ef79b56 93322:3b82aab9d8fc
7046 } 7046 }
7047 else 7047 else
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);
7055 7058
7056 if (BUFFERP (coding->dst_object)) 7059 if (BUFFERP (coding->dst_object))