aboutsummaryrefslogtreecommitdiff
path: root/libsylph/codeconv.c
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-09-15 06:51:16 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-09-15 06:51:16 +0000
commit9ba0a1333e12add2d5b8cadbfd4d440fedb7ad90 (patch)
treed1fc7427bed5bf1bbdd998cc6d7e873112946729 /libsylph/codeconv.c
parentb95a950b7ed1b7fff95e7715873c64b577eaa451 (diff)
re-enabled prefs_common.allow_jisx0201_kana.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@584 ee746299-78ed-0310-b773-934348b2243d
Diffstat (limited to 'libsylph/codeconv.c')
-rw-r--r--libsylph/codeconv.c4
1 files changed, 2 insertions, 2 deletions
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 <iconv.h>
#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;