aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-10-14 06:52:41 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-10-14 06:52:41 +0000
commit83f33ced89fe26733eba9aa1fec7af674f6935f8 (patch)
tree7eb09daf0d5abdb7ce546e06a11bc4ff28a6c50c
parent5566d60e93d408347e11a24032683b36d9a307cf (diff)
changed the locale charset of Japanese Windows from Shift_JIS to CP932.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@646 ee746299-78ed-0310-b773-934348b2243d
-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