aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <unknown>2003-09-14 13:36:51 +0000
committernyamatongwe <unknown>2003-09-14 13:36:51 +0000
commit8592fde005fd2ae78d2c4ed2842b34cb121758f7 (patch)
treee343ba822d61fb2ae4f832589a0cd2f3b718fc05
parentb3e4ad264ef8258767e540c9e87ea1afb060a7ce (diff)
downloadscintilla-mirror-8592fde005fd2ae78d2c4ed2842b34cb121758f7.tar.gz
Use iso8859-13 for Baltic.
-rw-r--r--gtk/PlatGTK.cxx4
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: