diff options
author | nyamatongwe <devnull@localhost> | 2003-09-14 13:36:51 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2003-09-14 13:36:51 +0000 |
commit | d7bf44a60261f22c1084f0c0c53ca10084cd5655 (patch) | |
tree | e343ba822d61fb2ae4f832589a0cd2f3b718fc05 | |
parent | 6c4a869cd5937b82b19255a48ad030cac535835e (diff) | |
download | scintilla-mirror-d7bf44a60261f22c1084f0c0c53ca10084cd5655.tar.gz |
Use iso8859-13 for Baltic.
-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 dafbd4e66..7bbf883ed 100644 --- a/gtk/PlatGTK.cxx +++ b/gtk/PlatGTK.cxx @@ -270,7 +270,7 @@ static const char *CharacterSetName(int characterSet) { case SC_CHARSET_DEFAULT: return "iso8859-*"; case SC_CHARSET_BALTIC: - return "*-*"; + return "iso8859-13"; case SC_CHARSET_CHINESEBIG5: return "*-*"; case SC_CHARSET_EASTEUROPE: @@ -727,7 +727,7 @@ const char *CharacterSetID(int characterSet) { case SC_CHARSET_DEFAULT: return "LATIN1"; case SC_CHARSET_BALTIC: - return "BALTIC"; + return "ISO8859-13"; case SC_CHARSET_CHINESEBIG5: return "BIG-5"; case SC_CHARSET_EASTEUROPE: |