diff options
author | Dan Winship <danw@src.gnome.org> | 2000-06-17 06:42:12 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-06-17 06:42:12 +0800 |
commit | f0600c2ccbfbd5378cdf980e2d53210c0101639d (patch) | |
tree | 6321ea59524bf53f09e57bf1fedde7783f83aaf4 /camel/camel-mime-utils.c | |
parent | 325ee9a266a538d72018110ba578b670dcdd0dbf (diff) | |
download | gsoc2013-evolution-f0600c2ccbfbd5378cdf980e2d53210c0101639d.tar.gz gsoc2013-evolution-f0600c2ccbfbd5378cdf980e2d53210c0101639d.tar.zst gsoc2013-evolution-f0600c2ccbfbd5378cdf980e2d53210c0101639d.zip |
KLUDGE! Since neither ETable nor GtkHTML supports UTF-8 yet, output
* camel-mime-utils.c (rfc2047_decode_word):
* camel-mime-part-utils.c (simple_data_wrapper_construct_from_parser):
* camel-folder-summary.c (summary_build_content_info):
KLUDGE! Since neither ETable nor GtkHTML supports UTF-8 yet,
output ISO-8859-1 instead, so Ettore can read his Italian mail. :)
This will be reverted later.
svn path=/trunk/; revision=3597
Diffstat (limited to 'camel/camel-mime-utils.c')
-rw-r--r-- | camel/camel-mime-utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/camel-mime-utils.c b/camel/camel-mime-utils.c index 6dd5ae4ac7..85016ed245 100644 --- a/camel/camel-mime-utils.c +++ b/camel/camel-mime-utils.c @@ -724,7 +724,7 @@ rfc2047_decode_word(const char *in, int len) outbuf = outbase; /* TODO: Should this cache iconv converters? */ - ic = unicode_iconv_open("utf-8", encname); + ic = unicode_iconv_open("iso-8859-1", encname); if (ic != (unicode_iconv_t)-1) { ret = unicode_iconv(ic, (const char **)&inbuf, &inlen, &outbuf, &outlen); unicode_iconv_close(ic); |