emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r113929: Another doc fix for `buffer-undo-list'.


From: Xue Fuqiao
Subject: [Emacs-diffs] trunk r113929: Another doc fix for `buffer-undo-list'.
Date: Fri, 16 Aug 2013 22:32:29 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 113929
revision-id: address@hidden
parent: address@hidden
committer: Xue Fuqiao <address@hidden>
branch nick: trunk
timestamp: Sat 2013-08-17 06:32:24 +0800
message:
  Another doc fix for `buffer-undo-list'.
modified:
  doc/lispref/text.texi          text.texi-20091113204419-o5vbwnq5f7feedwu-6215
  src/ChangeLog                  changelog-20091113204419-o5vbwnq5f7feedwu-1438
  src/buffer.c                   buffer.c-20091113204419-o5vbwnq5f7feedwu-264
=== modified file 'doc/lispref/text.texi'
--- a/doc/lispref/text.texi     2013-08-16 14:16:45 +0000
+++ b/doc/lispref/text.texi     2013-08-16 22:32:24 +0000
@@ -1289,7 +1289,7 @@
 @item (apply @var{delta} @var{beg} @var{end} @var{funname} . @var{args})
 This is an extensible undo item, which records a change limited to the
 range @var{beg} to @var{end}, which increased the size of the buffer
-by @var{delta} bytes.  It is undone by calling @var{funname} with
+by @var{delta} characters.  It is undone by calling @var{funname} with
 arguments @var{args}.
 
 This kind of element enables undo limited to a region to determine

=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2013-08-16 15:31:04 +0000
+++ b/src/ChangeLog     2013-08-16 22:32:24 +0000
@@ -8,6 +8,8 @@
 
 2013-08-16  Xue Fuqiao  <address@hidden>
 
+       * buffer.c (syms_of_buffer) <buffer-undo-list>: Doc fix.
+
        * editfns.c (insert_before_markers): Mention overlay in the doc string.
 
        * marker.c (set_marker): Remove documentation of undefined behavior.

=== modified file 'src/buffer.c'
--- a/src/buffer.c      2013-08-11 01:30:20 +0000
+++ b/src/buffer.c      2013-08-16 22:32:24 +0000
@@ -6106,7 +6106,7 @@
 
 An entry (apply DELTA BEG END FUN-NAME . ARGS) supports selective undo
 in the active region.  BEG and END is the range affected by this entry
-and DELTA is the number of bytes added or deleted in that range by
+and DELTA is the number of characters added or deleted in that range by
 this change.
 
 An entry (MARKER . DISTANCE) indicates that the marker MARKER


reply via email to

[Prev in Thread] Current Thread [Next in Thread]