Mercurial > pidgin.yaz
changeset 10375:cbfd90f7fa47
[gaim-migrate @ 11600]
I just read that ISO-8859-1-Windows-3.1-Latin-1's official name is
Windows-1252, and iconv supports it. This should be good, then.
committer: Tailor Script <tailor@pidgin.im>
author | Sean Egan <seanegan@gmail.com> |
---|---|
date | Wed, 15 Dec 2004 01:53:33 +0000 |
parents | bb7238808c9b |
children | 7196933335d9 |
files | src/protocols/oscar/oscar.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/protocols/oscar/oscar.c Wed Dec 15 01:23:13 2004 +0000 +++ b/src/protocols/oscar/oscar.c Wed Dec 15 01:53:33 2004 +0000 @@ -380,7 +380,7 @@ } else if (!strcmp(encoding, "iso-8859-1") || !strcmp(encoding, "ISO-8859-1-Windows-3.1-Latin-1")) { - utf8 = g_convert(text, textlen, "UTF-8", "ISO-8859-1", NULL, NULL, NULL); + utf8 = g_convert(text, textlen, "UTF-8", "Windows-1252", NULL, NULL, NULL); } else if (!strcmp(encoding, "unicode-2-0")) { utf8 = g_convert(text, textlen, "UTF-8", "UCS-2BE", NULL, NULL, NULL);