From d0fba1745fc6b4a9b078957cae994ff694ba5efe Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Wed, 24 Mar 2010 12:18:13 -0400 Subject: [PATCH] Fix 2009-11-13 change to append-to-buffer (Bug#5749). * simple.el (append-to-buffer): Ensure that point is preserved if BUFFER is the current buffer. Suggested by YAMAMOTO Mitsuharu. (Bug#5749) --- lisp/ChangeLog | 6 ++++++ lisp/simple.el | 13 +++++++------ 2 files changed, 13 insertions(+), 6 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a83786a5927..4cfb8549b46 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,9 @@ +2010-03-24 Chong Yidong + + * 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 * progmodes/make-mode.el (makefile-rule-action-regex): Backtrack less. diff --git a/lisp/simple.el b/lisp/simple.el index 30498ea2704..2adf4756dca 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -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. -- 2.11.4.GIT