]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix 2009-11-13 change to append-to-buffer (Bug#5749).
authorChong Yidong <cyd@stupidchicken.com>
Wed, 24 Mar 2010 16:18:13 +0000 (12:18 -0400)
committerChong Yidong <cyd@stupidchicken.com>
Wed, 24 Mar 2010 16:18:13 +0000 (12:18 -0400)
* simple.el (append-to-buffer): Ensure that point is preserved if
BUFFER is the current buffer.  Suggested by YAMAMOTO Mitsuharu.
(Bug#5749)

lisp/ChangeLog
lisp/simple.el

index a83786a5927aa37e40dc795ab67b8a1517c6a91a..4cfb8549b466dae89162718d6203cbe43229ac54 100644 (file)
@@ -1,3 +1,9 @@
+2010-03-24  Chong Yidong  <cyd@stupidchicken.com>
+
+       * simple.el (append-to-buffer): Ensure that point is preserved if
+       BUFFER is the current buffer.  Suggested by YAMAMOTO Mitsuharu.
+       (Bug#5749)
+
 2010-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * progmodes/make-mode.el (makefile-rule-action-regex): Backtrack less.
index 30498ea27047ed1912efb705a646e25ae68059f4..2adf4756dca48f6b6752f28dccfac52d7b156b87 100644 (file)
@@ -3473,12 +3473,13 @@ START and END specify the portion of the current buffer to be copied."
            (windows (get-buffer-window-list append-to t t))
            point)
       (with-current-buffer append-to
-       (setq point (point))
-       (barf-if-buffer-read-only)
-       (insert-buffer-substring oldbuf start end)
-       (dolist (window windows)
-         (when (= (window-point window) point)
-           (set-window-point window (point))))))))
+       (save-excursion
+         (setq point (point))
+         (barf-if-buffer-read-only)
+         (insert-buffer-substring oldbuf start end)
+         (dolist (window windows)
+           (when (= (window-point window) point)
+             (set-window-point window (point)))))))))
 
 (defun prepend-to-buffer (buffer start end)
   "Prepend to specified buffer the text of the region.