aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorChong Yidong <[email protected]>2010-02-27 20:11:15 -0500
committerChong Yidong <[email protected]>2010-02-27 20:11:15 -0500
commit8c3e96d2f0e4fee24498567c5840eb8d03d26720 (patch)
tree33f4c223f23b3c2e7afd713aadc0ec8f355a5f5f /lisp
parentc53b9c3b0ab88ca57fa247c22858e6385f12c0d2 (diff)
Fix save-excursion warning in files.el.
* files.el (recover-session-finish): Use with-current-buffer instead of save-excursion.
Diffstat (limited to 'lisp')
-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 1a51b18cbf..27890d66ba 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2010-02-28 Chong Yidong <[email protected]>
+
+ * files.el (recover-session-finish): Use with-current-buffer
+ instead of save-excursion.
+
2010-02-27 Stefan Monnier <[email protected]>
Fix in-buffer completion when after-change-functions modify the buffer.
diff --git a/lisp/files.el b/lisp/files.el
index d6783f82fb..f0a8d72d3f 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