aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-charset-map.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2002-01-08 04:29:37 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2002-01-08 04:29:37 +0800
commitcde6ace63bef1d3fd4ceb6decd6a1f4a9442d8d5 (patch)
treeb6fc2d78af73ef97b20cf7931fcf63ddf27b8c27 /camel/camel-charset-map.c
parent08fe7bd670db7de9937f924a4466a64d6e401e95 (diff)
downloadgsoc2013-evolution-cde6ace63bef1d3fd4ceb6decd6a1f4a9442d8d5.tar
gsoc2013-evolution-cde6ace63bef1d3fd4ceb6decd6a1f4a9442d8d5.tar.gz
gsoc2013-evolution-cde6ace63bef1d3fd4ceb6decd6a1f4a9442d8d5.tar.bz2
gsoc2013-evolution-cde6ace63bef1d3fd4ceb6decd6a1f4a9442d8d5.tar.lz
gsoc2013-evolution-cde6ace63bef1d3fd4ceb6decd6a1f4a9442d8d5.tar.xz
gsoc2013-evolution-cde6ace63bef1d3fd4ceb6decd6a1f4a9442d8d5.tar.zst
gsoc2013-evolution-cde6ace63bef1d3fd4ceb6decd6a1f4a9442d8d5.zip
Moved windows-1251 to the end of the list since it contains the euro and
2002-01-07 Jeffrey Stedfast <fejj@ximian.com> * camel-charset-map.c: Moved windows-1251 to the end of the list since it contains the euro and we'd prefer to use iso-8859-15 when the euro is requested than a windows charset if possible. * camel-charset-map-private.h: Regenerated. svn path=/trunk/; revision=15256
Diffstat (limited to 'camel/camel-charset-map.c')
-rw-r--r--camel/camel-charset-map.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/camel/camel-charset-map.c b/camel/camel-charset-map.c
index 2416dd2504..4368e52018 100644
--- a/camel/camel-charset-map.c
+++ b/camel/camel-charset-map.c
@@ -61,15 +61,16 @@ static struct {
{ "iso-8859-2", 0 }, /* Central/Eastern European */
{ "iso-8859-4", 0 }, /* Baltic */
{ "koi8-r", 0 }, /* Russian */
- { "windows-1251", 0 }, /* Russian */
{ "koi8-u", 0 }, /* Ukranian */
{ "iso-8859-5", 0 }, /* Least-popular Russian encoding */
{ "iso-8859-7", 0 }, /* Greek */
+ { "iso-8859-8", 0 }, /* Hebrew; Visual */
{ "iso-8859-9", 0 }, /* Turkish */
{ "iso-8859-13", 0 }, /* Baltic again */
{ "iso-8859-15", 0 }, /* New-and-improved iso-8859-1, but most
* programs that support this support UTF8
*/
+ { "windows-1251", 0 }, /* Russian */
{ 0, 0 }
};
@@ -81,7 +82,7 @@ unsigned int encoding_map[256 * 256];
#define UCS "UCS-4LE"
#endif
-void main(void)
+int main (void)
{
int i, j;
int max, min;
@@ -190,7 +191,8 @@ void main(void)
printf("\t\\\n");
}
printf("\n\n");
-
+
+ return 0;
}
#else