diff options
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/buffer.c b/src/buffer.c index 2ca4332bca2..a5099fc2487 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -5782,7 +5782,13 @@ An entry (nil PROPERTY VALUE BEG . END) indicates that a text property | |||
| 5782 | was modified between BEG and END. PROPERTY is the property name, | 5782 | was modified between BEG and END. PROPERTY is the property name, |
| 5783 | and VALUE is the old value. | 5783 | and VALUE is the old value. |
| 5784 | 5784 | ||
| 5785 | An entry (FUN-NAME . ARGS) means undo the change with (apply FUN-NAME ARGS). | 5785 | An entry (apply FUN-NAME . ARGS) means undo the change with |
| 5786 | \(apply FUN-NAME ARGS). | ||
| 5787 | |||
| 5788 | An entry (apply DELTA BEG END FUN-NAME . ARGS) supports selective undo | ||
| 5789 | in the active region. BEG and END is the range affected by this entry | ||
| 5790 | and DELTA is the number of bytes added or deleted in that range by | ||
| 5791 | this change. | ||
| 5786 | 5792 | ||
| 5787 | An entry (MARKER . DISTANCE) indicates that the marker MARKER | 5793 | An entry (MARKER . DISTANCE) indicates that the marker MARKER |
| 5788 | was adjusted in position by the offset DISTANCE (an integer). | 5794 | was adjusted in position by the offset DISTANCE (an integer). |