diff options
author | uid22944 <unknown> | 2006-12-07 22:22:09 +0000 |
---|---|---|
committer | uid22944 <unknown> | 2006-12-07 22:22:09 +0000 |
commit | 9e6cd4dbe1cb31d07bfd04d8b2a175ff4dad2064 (patch) | |
tree | 66c373e408e29be0a3ea76aafc5ab84ad189023b | |
parent | cf017cc738535a0d12f808ffd70368185a0ebc25 (diff) | |
download | scintilla-mirror-9e6cd4dbe1cb31d07bfd04d8b2a175ff4dad2064.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: |