diff options
| author | Xue Fuqiao | 2013-08-17 06:32:24 +0800 |
|---|---|---|
| committer | Xue Fuqiao | 2013-08-17 06:32:24 +0800 |
| commit | 70ff8240e489fc5ff8635a415b78b8881054dc23 (patch) | |
| tree | a67132bdb6146e930a96d0bc121db979c69192e7 | |
| parent | 49ceb676b01fadfd97c1a829c9228e3ca8ac733c (diff) | |
| download | emacs-70ff8240e489fc5ff8635a415b78b8881054dc23.tar.gz emacs-70ff8240e489fc5ff8635a415b78b8881054dc23.zip | |
Another doc fix for `buffer-undo-list'.
| -rw-r--r-- | doc/lispref/text.texi | 2 | ||||
| -rw-r--r-- | src/ChangeLog | 2 | ||||
| -rw-r--r-- | src/buffer.c | 2 |
3 files changed, 4 insertions, 2 deletions
diff --git a/doc/lispref/text.texi b/doc/lispref/text.texi index 4e56c53107c..f5607f6fe91 100644 --- a/doc/lispref/text.texi +++ b/doc/lispref/text.texi | |||
| @@ -1289,7 +1289,7 @@ This is an extensible undo item, which is undone by calling | |||
| 1289 | @item (apply @var{delta} @var{beg} @var{end} @var{funname} . @var{args}) | 1289 | @item (apply @var{delta} @var{beg} @var{end} @var{funname} . @var{args}) |
| 1290 | This is an extensible undo item, which records a change limited to the | 1290 | This is an extensible undo item, which records a change limited to the |
| 1291 | range @var{beg} to @var{end}, which increased the size of the buffer | 1291 | range @var{beg} to @var{end}, which increased the size of the buffer |
| 1292 | by @var{delta} bytes. It is undone by calling @var{funname} with | 1292 | by @var{delta} characters. It is undone by calling @var{funname} with |
| 1293 | arguments @var{args}. | 1293 | arguments @var{args}. |
| 1294 | 1294 | ||
| 1295 | This kind of element enables undo limited to a region to determine | 1295 | This kind of element enables undo limited to a region to determine |
diff --git a/src/ChangeLog b/src/ChangeLog index 035a4169399..013e181c406 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -8,6 +8,8 @@ | |||
| 8 | 8 | ||
| 9 | 2013-08-16 Xue Fuqiao <xfq.free@gmail.com> | 9 | 2013-08-16 Xue Fuqiao <xfq.free@gmail.com> |
| 10 | 10 | ||
| 11 | * buffer.c (syms_of_buffer) <buffer-undo-list>: Doc fix. | ||
| 12 | |||
| 11 | * editfns.c (insert_before_markers): Mention overlay in the doc string. | 13 | * editfns.c (insert_before_markers): Mention overlay in the doc string. |
| 12 | 14 | ||
| 13 | * marker.c (set_marker): Remove documentation of undefined behavior. | 15 | * marker.c (set_marker): Remove documentation of undefined behavior. |
diff --git a/src/buffer.c b/src/buffer.c index 5244b7043dc..58530248abc 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -6106,7 +6106,7 @@ An entry (apply FUN-NAME . ARGS) means undo the change with | |||
| 6106 | 6106 | ||
| 6107 | An entry (apply DELTA BEG END FUN-NAME . ARGS) supports selective undo | 6107 | An entry (apply DELTA BEG END FUN-NAME . ARGS) supports selective undo |
| 6108 | in the active region. BEG and END is the range affected by this entry | 6108 | in the active region. BEG and END is the range affected by this entry |
| 6109 | and DELTA is the number of bytes added or deleted in that range by | 6109 | and DELTA is the number of characters added or deleted in that range by |
| 6110 | this change. | 6110 | this change. |
| 6111 | 6111 | ||
| 6112 | An entry (MARKER . DISTANCE) indicates that the marker MARKER | 6112 | An entry (MARKER . DISTANCE) indicates that the marker MARKER |