aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/saveplace.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/saveplace.el b/lisp/saveplace.el
index 1f36196408a..51df1edeaa7 100644
--- a/lisp/saveplace.el
+++ b/lisp/saveplace.el
@@ -406,8 +406,8 @@ may have changed) back to `save-place-alist'."
406 (file-error (message "Saving places: can't write %s" file))))))) 406 (file-error (message "Saving places: can't write %s" file)))))))
407 407
408(defun save-places-to-alist () 408(defun save-places-to-alist ()
409 ;; go through buffer-list, saving places to alist if save-place-mode 409 "Save all buffer filenames and positions to `save-place-alist'.
410 ;; is non-nil, deleting them from alist if it is nil. 410See `save-place-to-alist'."
411 (let ((buf-list (buffer-list))) 411 (let ((buf-list (buffer-list)))
412 (while buf-list 412 (while buf-list
413 ;; put this into a save-excursion in case someone is counting on 413 ;; put this into a save-excursion in case someone is counting on