diff options
| author | nyamatongwe <unknown> | 2009-04-19 09:38:40 +0000 | 
|---|---|---|
| committer | nyamatongwe <unknown> | 2009-04-19 09:38:40 +0000 | 
| commit | bbf8cac83a0fbba3b68a17d119a559ecd521997a (patch) | |
| tree | 4dab662fa7dea25f6329508715bbde47f4f1bd31 /src/Editor.cxx | |
| parent | e59f78d0a04cf7c9a2b422da634c0b02ef88ee31 (diff) | |
| download | scintilla-mirror-bbf8cac83a0fbba3b68a17d119a559ecd521997a.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: | 
