aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/buffer.c b/src/buffer.c
index e0fde514ca4..d869388ec72 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -5798,6 +5798,14 @@ An entry (nil PROPERTY VALUE BEG . END) indicates that a text property
5798was modified between BEG and END. PROPERTY is the property name, 5798was modified between BEG and END. PROPERTY is the property name,
5799and VALUE is the old value. 5799and VALUE is the old value.
5800 5800
5801An entry (apply FUN-NAME . ARGS) means undo the change with
5802\(apply FUN-NAME ARGS).
5803
5804An entry (apply DELTA BEG END FUN-NAME . ARGS) supports selective undo
5805in the active region. BEG and END is the range affected by this entry
5806and DELTA is the number of bytes added or deleted in that range by
5807this change.
5808
5801An entry (MARKER . DISTANCE) indicates that the marker MARKER 5809An entry (MARKER . DISTANCE) indicates that the marker MARKER
5802was adjusted in position by the offset DISTANCE (an integer). 5810was adjusted in position by the offset DISTANCE (an integer).
5803 5811