aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;