diff options
author | nyamatongwe <devnull@localhost> | 2009-04-19 09:38:40 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2009-04-19 09:38:40 +0000 |
commit | a2dd18ee2dd2d4279b02569172e0c111b9b96c9a (patch) | |
tree | 4dab662fa7dea25f6329508715bbde47f4f1bd31 /src/Editor.cxx | |
parent | 11b81e9bcf0fcb2113d4994ca77ede2155283bfb (diff) | |
download | scintilla-mirror-a2dd18ee2dd2d4279b02569172e0c111b9b96c9a.tar.gz |
Added UNDO_MAY_COALESCE flag to AddUndoAction.
Diffstat (limited to 'src/Editor.cxx')
-rw-r--r-- | src/Editor.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx index 77fbb4cec..0c15a8c98 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -8006,7 +8006,7 @@ sptr_t Editor::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lParam) { return vs.annotationStyleOffset; case SCI_ADDUNDOACTION: - pdoc->AddUndoAction(wParam); + pdoc->AddUndoAction(wParam, lParam & UNDO_MAY_COALESCE); break; default: |