diff options
author | nyamatongwe <devnull@localhost> | 2003-11-04 09:02:20 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2003-11-04 09:02:20 +0000 |
commit | 32b9baebfc4db45f5445ca29a03d3bd4e7f67eb2 (patch) | |
tree | fe4a7cc458a43f4a1609bb48354bb639b370c5e2 /src/Editor.cxx | |
parent | ebf25a1b4cf192ee683014b78dc0f11e95c58fe5 (diff) | |
download | scintilla-mirror-32b9baebfc4db45f5445ca29a03d3bd4e7f67eb2.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(); |