]> git.eshelyaron.com Git - emacs.git/commitdiff
Document buffer-swap-text+save-excursion interaction
authorNoam Postavsky <npostavs@gmail.com>
Mon, 11 Jul 2016 01:52:23 +0000 (21:52 -0400)
committerNoam Postavsky <npostavs@gmail.com>
Fri, 15 Jul 2016 00:01:39 +0000 (20:01 -0400)
* doc/lispref/buffers.texi (Swapping Text):
* src/buffer.c (Fbuffer_swap_text): Add warning about interaction of
`buffer-swap-text' and `save-excursion' (Bug #4655).

doc/lispref/buffers.texi
src/buffer.c

index 1f7f263fb21183304b82a9cdf1518d1f2bac045d..740d7cfd8a15fad068ca68bc0dc58bc1aa40c730 100644 (file)
@@ -1211,6 +1211,12 @@ swapped as well: the positions of point and mark, all the markers, the
 overlays, the text properties, the undo list, the value of the
 @code{enable-multibyte-characters} flag (@pxref{Text Representations,
 enable-multibyte-characters}), etc.
+
+@strong{Warning:} If this function is called from within a
+@code{save-excursion} form, the current buffer will be set to
+@var{buffer} upon leaving the form, since the marker used by
+@code{save-excursion} to save the position and buffer will be swapped
+as well.
 @end defun
 
   If you use @code{buffer-swap-text} on a file-visiting buffer, you
index e4269c0046a43283b6aadd4fc7164d6f19f78484..89f4479740adcbc9e3240a5c104524fadcfdb0cb 100644 (file)
@@ -2231,7 +2231,9 @@ advance_to_char_boundary (ptrdiff_t byte_pos)
 
 DEFUN ("buffer-swap-text", Fbuffer_swap_text, Sbuffer_swap_text,
        1, 1, 0,
-       doc: /* Swap the text between current buffer and BUFFER.  */)
+       doc: /* Swap the text between current buffer and BUFFER.
+Using this function from `save-excursion' might produce surprising
+results, see Info node `(elisp)Swapping Text'.  */)
   (Lisp_Object buffer)
 {
   struct buffer *other_buffer;