diff options
author | nyamatongwe <nyamatongwe@gmail.com> | 2010-08-05 14:45:00 +1000 |
---|---|---|
committer | nyamatongwe <nyamatongwe@gmail.com> | 2010-08-05 14:45:00 +1000 |
commit | 1ed49e4e231a18c737f4f55406d469f94370d0a1 (patch) | |
tree | 2a0575e7abd51d3f2dabcc0a1610bca7b535ca6c | |
parent | 1467c0b4d112e302e74c58324427194a8779d6cf (diff) | |
download | scintilla-mirror-1ed49e4e231a18c737f4f55406d469f94370d0a1.tar.gz |
Korean code page 949 supported.
Chinese code page 936 maps to iconv id CP936 which maps
more characters than GB2312.
-rw-r--r-- | gtk/PlatGTK.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/PlatGTK.cxx b/gtk/PlatGTK.cxx index d632b9aa6..81dd686b3 100644 --- a/gtk/PlatGTK.cxx +++ b/gtk/PlatGTK.cxx @@ -746,11 +746,11 @@ const char *CharacterSetID(int characterSet) { case SC_CHARSET_EASTEUROPE: return "ISO-8859-2"; case SC_CHARSET_GB2312: - return "GB2312"; + return "CP936"; case SC_CHARSET_GREEK: return "ISO-8859-7"; case SC_CHARSET_HANGUL: - return ""; + return "CP949"; case SC_CHARSET_MAC: return "MACINTOSH"; case SC_CHARSET_OEM: @@ -766,7 +766,7 @@ const char *CharacterSetID(int characterSet) { case SC_CHARSET_TURKISH: return "ISO-8859-9"; case SC_CHARSET_JOHAB: - return "JOHAB"; + return "CP1361"; case SC_CHARSET_HEBREW: return "ISO-8859-8"; case SC_CHARSET_ARABIC: |