aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.cxx
diff options
context:
space:
mode:
authornyamatongwe <unknown>2003-11-04 09:02:20 +0000
committernyamatongwe <unknown>2003-11-04 09:02:20 +0000
commitfa167e2005a18dac2bfc7f916b43ac6b772a4820 (patch)
treefe4a7cc458a43f4a1609bb48354bb639b370c5e2 /src/Editor.cxx
parent1cb0c37b721cfa4909a260a48aa82999f61cacc0 (diff)
downloadscintilla-mirror-fa167e2005a18dac2bfc7f916b43ac6b772a4820.tar.gz
Simplified SetCharClasses and added SCI_SETCHARSDEFAULT.
Diffstat (limited to 'src/Editor.cxx')
-rw-r--r--src/Editor.cxx4
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();