aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--ChangeLog.ja5
-rw-r--r--libsylph/codeconv.c2
3 files changed, 11 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index dfdef497..ed814901 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-10-14
+
+ * libsylph/codeconv.c: changed the locale charset of Japanese Windows
+ from Shift_JIS to CP932.
+
2005-10-13
* libsylph/codeconv.[ch]: enhanced the support of
diff --git a/ChangeLog.ja b/ChangeLog.ja
index 2c661feb..ba7f4924 100644
--- a/ChangeLog.ja
+++ b/ChangeLog.ja
@@ -1,3 +1,8 @@
+2005-10-14
+
+ * libsylph/codeconv.c: 日本語 Windows のロケール文字コードを Shift_JIS
+ から CP932 に変更。
+
2005-10-13
* libsylph/codeconv.[ch]: 日本語の環境依存文字の対応を強化
diff --git a/libsylph/codeconv.c b/libsylph/codeconv.c
index ff531709..6328a2ef 100644
--- a/libsylph/codeconv.c
+++ b/libsylph/codeconv.c
@@ -1600,7 +1600,7 @@ static const struct {
{"ja_JP.SJIS" , C_SHIFT_JIS , C_ISO_2022_JP},
{"ja_JP.JIS" , C_ISO_2022_JP , C_ISO_2022_JP},
#ifdef G_OS_WIN32
- {"ja_JP" , C_SHIFT_JIS , C_ISO_2022_JP},
+ {"ja_JP" , C_CP932 , C_ISO_2022_JP},
#else
{"ja_JP" , C_EUC_JP , C_ISO_2022_JP},
#endif