summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChong Yidong <cyd@stupidchicken.com>2010-02-27 20:11:15 -0500
committerChong Yidong <cyd@stupidchicken.com>2010-02-27 20:11:15 -0500
commit8c3e96d2f0e4fee24498567c5840eb8d03d26720 (patch)
tree33f4c223f23b3c2e7afd713aadc0ec8f355a5f5f
parentc53b9c3b0ab88ca57fa247c22858e6385f12c0d2 (diff)
downloademacs-8c3e96d2f0e4fee24498567c5840eb8d03d26720.tar.gz
Fix save-excursion warning in files.el.
* files.el (recover-session-finish): Use with-current-buffer instead of save-excursion.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/files.el3
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 1a51b18cbf5..27890d66ba6 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2010-02-28 Chong Yidong <cyd@stupidchicken.com>
+
+ * files.el (recover-session-finish): Use with-current-buffer
+ instead of save-excursion.
+
2010-02-27 Stefan Monnier <monnier@iro.umontreal.ca>
Fix in-buffer completion when after-change-functions modify the buffer.
diff --git a/lisp/files.el b/lisp/files.el
index d6783f82fbb..f0a8d72d3f0 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -5034,9 +5034,8 @@ This command is used in the special Dired buffer created by
(dired-unmark 1)
(dired-do-flagged-delete t)
(unwind-protect
- (save-excursion
+ (with-current-buffer buffer
;; Read in the auto-save-list file.
- (set-buffer buffer)
(erase-buffer)
(insert-file-contents file)
;; Loop thru the text of that file