# HG changeset patch # User Stefan Monnier # Date 1206649495 0 # Node ID 3b82aab9d8fcb9a47c110b8e44e673732d86297c # Parent c3fe9ef79b56e1079f6eccb36861e4b63aff8ce9 (decode_coding_object): Revert part of last change. diff -r c3fe9ef79b56 -r 3b82aab9d8fc src/coding.c --- 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);