diff options
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/buffer.c b/src/buffer.c index b3bcb68c281..ae390ba7500 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -1952,6 +1952,7 @@ DEFUN ("bury-buffer", Fbury_buffer, Sbury_buffer, 0, 1, "", | |||
| 1952 | doc: /* Put BUFFER at the end of the list of all buffers. | 1952 | doc: /* Put BUFFER at the end of the list of all buffers. |
| 1953 | There it is the least likely candidate for `other-buffer' to return; | 1953 | There it is the least likely candidate for `other-buffer' to return; |
| 1954 | thus, the least likely buffer for \\[switch-to-buffer] to select by default. | 1954 | thus, the least likely buffer for \\[switch-to-buffer] to select by default. |
| 1955 | You can specify a buffer name as BUFFER, or an actual buffer object. | ||
| 1955 | If BUFFER is nil or omitted, bury the current buffer. | 1956 | If BUFFER is nil or omitted, bury the current buffer. |
| 1956 | Also, if BUFFER is nil or omitted, remove the current buffer from the | 1957 | Also, if BUFFER is nil or omitted, remove the current buffer from the |
| 1957 | selected window if it is displayed there. */) | 1958 | selected window if it is displayed there. */) |
| @@ -5782,6 +5783,14 @@ An entry (nil PROPERTY VALUE BEG . END) indicates that a text property | |||
| 5782 | was modified between BEG and END. PROPERTY is the property name, | 5783 | was modified between BEG and END. PROPERTY is the property name, |
| 5783 | and VALUE is the old value. | 5784 | and VALUE is the old value. |
| 5784 | 5785 | ||
| 5786 | An entry (apply FUN-NAME . ARGS) means undo the change with | ||
| 5787 | \(apply FUN-NAME ARGS). | ||
| 5788 | |||
| 5789 | An entry (apply DELTA BEG END FUN-NAME . ARGS) supports selective undo | ||
| 5790 | in the active region. BEG and END is the range affected by this entry | ||
| 5791 | and DELTA is the number of bytes added or deleted in that range by | ||
| 5792 | this change. | ||
| 5793 | |||
| 5785 | An entry (MARKER . DISTANCE) indicates that the marker MARKER | 5794 | An entry (MARKER . DISTANCE) indicates that the marker MARKER |
| 5786 | was adjusted in position by the offset DISTANCE (an integer). | 5795 | was adjusted in position by the offset DISTANCE (an integer). |
| 5787 | 5796 | ||