aboutsummaryrefslogtreecommitdiff
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
parentb95a950b7ed1b7fff95e7715873c64b577eaa451 (diff)
re-enabled prefs_common.allow_jisx0201_kana.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@584 ee746299-78ed-0310-b773-934348b2243d
-rw-r--r--ChangeLog5
-rw-r--r--ChangeLog.ja5
-rw-r--r--libsylph/codeconv.c4
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 <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;