diff options
author | nyamatongwe <unknown> | 2003-11-04 09:02:20 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2003-11-04 09:02:20 +0000 |
commit | fa167e2005a18dac2bfc7f916b43ac6b772a4820 (patch) | |
tree | fe4a7cc458a43f4a1609bb48354bb639b370c5e2 /src/Editor.cxx | |
parent | 1cb0c37b721cfa4909a260a48aa82999f61cacc0 (diff) | |
download | scintilla-mirror-fa167e2005a18dac2bfc7f916b43ac6b772a4820.tar.gz |
Simplified SetCharClasses and added SCI_SETCHARSDEFAULT.
Diffstat (limited to 'src/Editor.cxx')
-rw-r--r-- | src/Editor.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx index c4e6860e9..897680833 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -5744,6 +5744,10 @@ sptr_t Editor::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lParam) { } break; + case SCI_SETCHARSDEFAULT: + pdoc->SetDefaultCharClasses(); + break; + case SCI_GETLENGTH: return pdoc->Length(); |