diff options
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 8 |
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 | |||
| 5798 | was modified between BEG and END. PROPERTY is the property name, | 5798 | was modified between BEG and END. PROPERTY is the property name, |
| 5799 | and VALUE is the old value. | 5799 | and VALUE is the old value. |
| 5800 | 5800 | ||
| 5801 | An entry (apply FUN-NAME . ARGS) means undo the change with | ||
| 5802 | \(apply FUN-NAME ARGS). | ||
| 5803 | |||
| 5804 | An entry (apply DELTA BEG END FUN-NAME . ARGS) supports selective undo | ||
| 5805 | in the active region. BEG and END is the range affected by this entry | ||
| 5806 | and DELTA is the number of bytes added or deleted in that range by | ||
| 5807 | this change. | ||
| 5808 | |||
| 5801 | An entry (MARKER . DISTANCE) indicates that the marker MARKER | 5809 | An entry (MARKER . DISTANCE) indicates that the marker MARKER |
| 5802 | was adjusted in position by the offset DISTANCE (an integer). | 5810 | was adjusted in position by the offset DISTANCE (an integer). |
| 5803 | 5811 | ||