diff options
author | uid22944 <devnull@localhost> | 2006-12-07 22:22:09 +0000 |
---|---|---|
committer | uid22944 <devnull@localhost> | 2006-12-07 22:22:09 +0000 |
commit | 7f5ddf9243e5ef1c73b013b474a993566f565921 (patch) | |
tree | 66c373e408e29be0a3ea76aafc5ab84ad189023b | |
parent | 245665d339f3ff975136f852b22d06ada82474bb (diff) | |
download | scintilla-mirror-7f5ddf9243e5ef1c73b013b474a993566f565921.tar.gz |
Fixed problem on Solaris where "LATIN1" wasn't supported by iconv so typing had
no effect.
-rw-r--r-- | gtk/PlatGTK.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/PlatGTK.cxx b/gtk/PlatGTK.cxx index 1ae3a040b..50954d475 100644 --- a/gtk/PlatGTK.cxx +++ b/gtk/PlatGTK.cxx @@ -745,7 +745,7 @@ const char *CharacterSetID(int characterSet) { case SC_CHARSET_ANSI: return ""; case SC_CHARSET_DEFAULT: - return "LATIN1"; + return "ISO-8859-1"; case SC_CHARSET_BALTIC: return "ISO-8859-13"; case SC_CHARSET_CHINESEBIG5: |