aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.cxx
diff options
context:
space:
mode:
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 8ebdbd9ae..07c52bc01 100644
--- a/src/Editor.cxx
+++ b/src/Editor.cxx
@@ -6530,6 +6530,10 @@ sptr_t Editor::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lParam) {
int markerID = pdoc->AddMark(wParam, lParam);
return markerID;
}
+ case SCI_MARKERADDSET:
+ if (lParam != 0)
+ pdoc->AddMarkSet(wParam, lParam);
+ break;
case SCI_MARKERDELETE:
pdoc->DeleteMark(wParam, lParam);