aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2002-10-04 00:53:20 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2002-10-04 00:53:20 +0800
commitf79eb8ef5ab309807044ef984804aedd1a597152 (patch)
treef1213a98addf254a8321220df1708f8d9aa4de77
parent3e5243242449a5626f294efff8414242ba13b153 (diff)
downloadgsoc2013-evolution-f79eb8ef5ab309807044ef984804aedd1a597152.tar
gsoc2013-evolution-f79eb8ef5ab309807044ef984804aedd1a597152.tar.gz
gsoc2013-evolution-f79eb8ef5ab309807044ef984804aedd1a597152.tar.bz2
gsoc2013-evolution-f79eb8ef5ab309807044ef984804aedd1a597152.tar.lz
gsoc2013-evolution-f79eb8ef5ab309807044ef984804aedd1a597152.tar.xz
gsoc2013-evolution-f79eb8ef5ab309807044ef984804aedd1a597152.tar.zst
gsoc2013-evolution-f79eb8ef5ab309807044ef984804aedd1a597152.zip
Map us-ascii to windows-1252 also.
2002-10-02 Jeffrey Stedfast <fejj@ximian.com> * camel-charset-map.c (camel_charset_iso_to_windows): Map us-ascii to windows-1252 also. svn path=/trunk/; revision=18318
-rw-r--r--camel/ChangeLog5
-rw-r--r--camel/camel-charset-map.c3
2 files changed, 7 insertions, 1 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index 053e72158d..bc6747e81f 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,3 +1,8 @@
+2002-10-02 Jeffrey Stedfast <fejj@ximian.com>
+
+ * camel-charset-map.c (camel_charset_iso_to_windows): Map us-ascii
+ to windows-1252 also.
+
2002-10-02 Not Zed <NotZed@Ximian.com>
* providers/imap/camel-imap-folder.c (get_matching): Set *set to
diff --git a/camel/camel-charset-map.c b/camel/camel-charset-map.c
index 4368e52018..8594f261cf 100644
--- a/camel/camel-charset-map.c
+++ b/camel/camel-charset-map.c
@@ -307,6 +307,7 @@ camel_charset_iso_to_windows (const char *isocharset)
/* According to http://czyborra.com/charsets/codepages.html,
* the charset mapping is as follows:
*
+ * us-ascii maps to windows-cp1252
* iso-8859-1 maps to windows-cp1252
* iso-8859-2 maps to windows-cp1250
* iso-8859-3 maps to windows-cp????
@@ -327,7 +328,7 @@ camel_charset_iso_to_windows (const char *isocharset)
* windows-cp1257.
*/
- if (!strcasecmp (isocharset, "iso-8859-1"))
+ if (!strcasecmp (isocharset, "iso-8859-1") || !strcasecmp (isocharset, "us-ascii"))
return "windows-cp1252";
else if (!strcasecmp (isocharset, "iso-8859-2"))
return "windows-cp1250";