]> git.eshelyaron.com Git - emacs.git/commitdiff
Refine the documentation of `insert-buffer-substring'.
authorXue Fuqiao <xfq.free@gmail.com>
Fri, 16 Aug 2013 03:16:03 +0000 (11:16 +0800)
committerXue Fuqiao <xfq.free@gmail.com>
Fri, 16 Aug 2013 03:16:03 +0000 (11:16 +0800)
doc/lispref/ChangeLog
doc/lispref/text.texi

index d0099404ff1b34df476a98f585b7ec6f9645df71..fcb47b30f9a4ffdc60ff65b4507647947ec8b0f3 100644 (file)
@@ -1,6 +1,6 @@
 2013-08-16  Xue Fuqiao  <xfq.free@gmail.com>
 
-       * text.texi (Insertion): Add cross-references.
+       * text.texi (Insertion): Refine.
 
        * positions.texi (Character Motion):
        * markers.texi (Moving Markers):
index bc79971188e341120c2ddd0f7cff8f9ac55461ac..17a1798be2ffd3753a7de3132c2fc77d0ef40232 100644 (file)
@@ -423,10 +423,10 @@ insertion point.  @xref{Sticky Properties}.
 
 @defun insert-buffer-substring from-buffer-or-name &optional start end
 This function inserts a portion of buffer @var{from-buffer-or-name}
-(which must already exist) into the current buffer before point.  The
-text inserted is the region between @var{start} and @var{end}.  (These
-arguments default to the beginning and end of the accessible portion of
-that buffer.)  This function returns @code{nil}.
+into the current buffer before point.  The text inserted is the region
+between @var{start} (inclusive) and @var{end} (exclusive).  (These
+arguments default to the beginning and end of the accessible portion
+of that buffer.)  This function returns @code{nil}.
 
 In this example, the form is executed with buffer @samp{bar} as the
 current buffer.  We assume that buffer @samp{bar} is initially empty.