From: Stefan Monnier Date: Thu, 27 Mar 2008 20:24:55 +0000 (+0000) Subject: (decode_coding_object): Revert part of last change. X-Git-Tag: emacs-pretest-23.0.90~6854 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0154725e48b709be3cd06628fccaa2e4f46af441;p=emacs.git (decode_coding_object): Revert part of last change. --- 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, { code_conversion_save (0, 0); coding->dst_object = Qnil; - coding->dst_multibyte = !CODING_FOR_UNIBYTE (coding); + /* Most callers presume this will return a multibyte result, and they + won't use `binary' or `raw-text' anyway, so let's not worry about + CODING_FOR_UNIBYTE. */ + coding->dst_multibyte = Qt; } decode_coding (coding);