diff options
author | nyamatongwe <unknown> | 2006-08-09 23:50:07 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2006-08-09 23:50:07 +0000 |
commit | 18d52665a7977802032ed5ca8876ee0429cc4ced (patch) | |
tree | 9b65a77202f59a2abc7a86712e336f2537aa4278 | |
parent | 1bb059932a5ec27a0a85fb23ab527abb08db5bc6 (diff) | |
download | scintilla-mirror-18d52665a7977802032ed5ca8876ee0429cc4ced.tar.gz |
Support for Thai.
-rw-r--r-- | gtk/PlatGTK.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/PlatGTK.cxx b/gtk/PlatGTK.cxx index a520b63bf..1ae3a040b 100644 --- a/gtk/PlatGTK.cxx +++ b/gtk/PlatGTK.cxx @@ -319,7 +319,7 @@ static const char *CharacterSetName(int characterSet) { case SC_CHARSET_VIETNAMESE: return "*-*"; case SC_CHARSET_THAI: - return "*-1"; + return "iso8859-11"; case SC_CHARSET_8859_15: return "iso8859-15"; default: @@ -781,7 +781,7 @@ const char *CharacterSetID(int characterSet) { case SC_CHARSET_VIETNAMESE: return ""; case SC_CHARSET_THAI: - return "ISO-8859-1"; + return "ISO-8859-11"; case SC_CHARSET_8859_15: return "ISO-8859-15"; default: |