aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-mime-filter-tohtml.c
diff options
context:
space:
mode:
authorRadek Doulik <rodo@src.gnome.org>2002-11-20 02:42:41 +0800
committerRadek Doulik <rodo@src.gnome.org>2002-11-20 02:42:41 +0800
commitccbfa5da0395e08ce672a0546c513cf970c29fb6 (patch)
treedf2ad305f7ef54ecf568468ce754b1ce69f2d5ab /camel/camel-mime-filter-tohtml.c
parent3a49f0dd089a4a9fc1dd199a3f1e843e514afb8a (diff)
downloadgsoc2013-evolution-ccbfa5da0395e08ce672a0546c513cf970c29fb6.tar
gsoc2013-evolution-ccbfa5da0395e08ce672a0546c513cf970c29fb6.tar.gz
gsoc2013-evolution-ccbfa5da0395e08ce672a0546c513cf970c29fb6.tar.bz2
gsoc2013-evolution-ccbfa5da0395e08ce672a0546c513cf970c29fb6.tar.lz
gsoc2013-evolution-ccbfa5da0395e08ce672a0546c513cf970c29fb6.tar.xz
gsoc2013-evolution-ccbfa5da0395e08ce672a0546c513cf970c29fb6.tar.zst
gsoc2013-evolution-ccbfa5da0395e08ce672a0546c513cf970c29fb6.zip
applied plain_signature_fix.patch
svn path=/trunk/; revision=18841
Diffstat (limited to 'camel/camel-mime-filter-tohtml.c')
-rw-r--r--camel/camel-mime-filter-tohtml.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/camel-mime-filter-tohtml.c b/camel/camel-mime-filter-tohtml.c
index 0f7fbfebf3..db84b7f9fe 100644
--- a/camel/camel-mime-filter-tohtml.c
+++ b/camel/camel-mime-filter-tohtml.c
@@ -211,7 +211,7 @@ writeln (CamelMimeFilter *filter, const char *in, const char *inend, char *outpt
}
/* otherwise, FALL THROUGH */
default:
- if (!(u >= 0x20 && u < 0x80)) {
+ if (!(u >= 0x20 && u < 0x80) && !(html->flags & CAMEL_MIME_FILTER_TOHTML_PRESERVE_8BIT)) {
if (html->flags & CAMEL_MIME_FILTER_TOHTML_ESCAPE_8BIT)
*outptr++ = '?';
else