From 9ba0a1333e12add2d5b8cadbfd4d440fedb7ad90 Mon Sep 17 00:00:00 2001 From: hiro Date: Thu, 15 Sep 2005 06:51:16 +0000 Subject: re-enabled prefs_common.allow_jisx0201_kana. git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@584 ee746299-78ed-0310-b773-934348b2243d --- ChangeLog | 5 +++++ ChangeLog.ja | 5 +++++ libsylph/codeconv.c | 4 ++-- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index e4f995ef..c2364337 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-09-15 + + * libsylph/codeconv.c: conv_euctojis(): re-enabled + prefs_common.allow_jisx0201_kana. + 2005-09-14 * libsylph/pop.c diff --git a/ChangeLog.ja b/ChangeLog.ja index d915a0f8..0e489985 100644 --- a/ChangeLog.ja +++ b/ChangeLog.ja @@ -1,3 +1,8 @@ +2005-09-15 + + * libsylph/codeconv.c: conv_euctojis(): + prefs_common.allow_jisx0201_kana を再び有効にした。 + 2005-09-14 * libsylph/pop.c diff --git a/libsylph/codeconv.c b/libsylph/codeconv.c index 265e323a..20378fb8 100644 --- a/libsylph/codeconv.c +++ b/libsylph/codeconv.c @@ -37,6 +37,7 @@ #include #include "codeconv.h" +#include "prefs_common.h" #include "unmime.h" #include "base64.h" #include "quoted-printable.h" @@ -319,8 +320,7 @@ static gchar *conv_euctojis(const gchar *inbuf, gint *error) } } else if (iseuchwkana1(*in)) { if (iseuchwkana2(*(in + 1))) { - //if (prefs_common.allow_jisx0201_kana) { - if (0) { + if (prefs_common.allow_jisx0201_kana) { HW_IN(); in++; *out++ = *in++ & 0x7f; -- cgit v1.2.3