aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authornyamatongwe <unknown>2009-04-19 09:38:40 +0000
committernyamatongwe <unknown>2009-04-19 09:38:40 +0000
commitbbf8cac83a0fbba3b68a17d119a559ecd521997a (patch)
tree4dab662fa7dea25f6329508715bbde47f4f1bd31 /include
parente59f78d0a04cf7c9a2b422da634c0b02ef88ee31 (diff)
downloadscintilla-mirror-bbf8cac83a0fbba3b68a17d119a559ecd521997a.tar.gz
Added UNDO_MAY_COALESCE flag to AddUndoAction.
Diffstat (limited to 'include')
-rw-r--r--include/Scintilla.h1
-rw-r--r--include/Scintilla.iface4
2 files changed, 4 insertions, 1 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h
index 8c1232b8a..27b4e3795 100644
--- a/include/Scintilla.h
+++ b/include/Scintilla.h
@@ -705,6 +705,7 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam,
#define SCI_ANNOTATIONGETVISIBLE 2549
#define SCI_ANNOTATIONSETSTYLEOFFSET 2550
#define SCI_ANNOTATIONGETSTYLEOFFSET 2551
+#define UNDO_MAY_COALESCE 1
#define SCI_ADDUNDOACTION 2560
#define SCI_STARTRECORD 3001
#define SCI_STOPRECORD 3002
diff --git a/include/Scintilla.iface b/include/Scintilla.iface
index e51e9274c..87783ccc0 100644
--- a/include/Scintilla.iface
+++ b/include/Scintilla.iface
@@ -1902,8 +1902,10 @@ set void AnnotationSetStyleOffset=2550(int style,)
# Get the start of the range of style numbers used for annotations
get int AnnotationGetStyleOffset=2551(,)
+val UNDO_MAY_COALESCE=1
+
# Add a container action to the undo stack
-fun void AddUndoAction=2560(int token,)
+fun void AddUndoAction=2560(int token, int flags)
# Start notifying the container of all key presses and commands.
fun void StartRecord=3001(,)