diff options
| author | Serg Stetsuk <unknown> | 2015-08-16 10:20:44 +1000 |
|---|---|---|
| committer | Serg Stetsuk <unknown> | 2015-08-16 10:20:44 +1000 |
| commit | d7c11303d5eb4ae755b44c0bee911996b983ca6f (patch) | |
| tree | 23c0c12ff5dc63bfd0f05d1beac1c886a32aacfe /gtk/PlatGTK.cxx | |
| parent | b8c77c7f9e2322a1f32a49a3a6cf59d5dee04042 (diff) | |
| download | scintilla-mirror-d7c11303d5eb4ae755b44c0bee911996b983ca6f.tar.gz | |
On GTK+, support code page 866 with SC_CHARSET_OEM866.
Diffstat (limited to 'gtk/PlatGTK.cxx')
| -rw-r--r-- | gtk/PlatGTK.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gtk/PlatGTK.cxx b/gtk/PlatGTK.cxx index 91f35a189..d6bbd955a 100644 --- a/gtk/PlatGTK.cxx +++ b/gtk/PlatGTK.cxx @@ -459,6 +459,8 @@ const char *CharacterSetID(int characterSet) { return "ASCII"; case SC_CHARSET_RUSSIAN: return "KOI8-R"; + case SC_CHARSET_OEM866: + return "CP866"; case SC_CHARSET_CYRILLIC: return "CP1251"; case SC_CHARSET_SHIFTJIS: |
