From 1ca5b9aa126b860d9198f85e44104f857513bef5 Mon Sep 17 00:00:00 2001 From: hiro Date: Mon, 19 Dec 2005 06:13:23 +0000 Subject: support nonstandard encoding 'ks_c_5601-1987'. git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@835 ee746299-78ed-0310-b773-934348b2243d --- libsylph/codeconv.c | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'libsylph/codeconv.c') diff --git a/libsylph/codeconv.c b/libsylph/codeconv.c index 6328a2ef..73bebb7f 100644 --- a/libsylph/codeconv.c +++ b/libsylph/codeconv.c @@ -1271,10 +1271,16 @@ static gchar *conv_noconv(const gchar *inbuf, gint *error) static const gchar * conv_get_fallback_for_private_encoding(const gchar *encoding) { - if (encoding && (encoding[0] == 'X' || encoding[0] == 'x') && - encoding[1] == '-') { - if (!g_ascii_strcasecmp(encoding, CS_X_GBK)) - return CS_GBK; + if (encoding) { + if ((encoding[0] == 'X' || encoding[0] == 'x') && + encoding[1] == '-') { + if (!g_ascii_strcasecmp(encoding, CS_X_GBK)) + return CS_GBK; + } else if ((encoding[0] == 'K' || encoding[0] == 'k') && + (encoding[1] == 'S' || encoding[1] == 's')) { + if (!g_ascii_strcasecmp(encoding, CS_KS_C_5601_1987)) + return CS_EUC_KR; + } } return encoding; -- cgit v1.2.3