changeset 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
files src/coding.c
diffstat 1 files changed, 4 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/coding.c	Thu Mar 27 20:04:37 2008 +0000
+++ b/src/coding.c	Thu Mar 27 20:24:55 2008 +0000
@@ -7048,7 +7048,10 @@
     {
       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);