diff options
Diffstat (limited to 'lisp/saveplace.el')
-rw-r--r-- | lisp/saveplace.el | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lisp/saveplace.el b/lisp/saveplace.el index baa6b794fc4..1b7efcec1b9 100644 --- a/lisp/saveplace.el +++ b/lisp/saveplace.el @@ -68,7 +68,7 @@ following code in your init file: (make-variable-buffer-local 'save-place) -(defcustom save-place-file (convert-standard-filename "~/.emacs-places") +(defcustom save-place-file (locate-user-emacs-file "places" ".emacs-places") "Name of the file that records `save-place-alist' value." :type 'file :group 'save-place) @@ -224,9 +224,7 @@ may have changed\) back to `save-place-alist'." (symbol-name coding-system-for-write))) (let ((print-length nil) (print-level nil)) - (pp (sort save-place-alist - (lambda (a b) (string< (car a) (car b)))) - (current-buffer))) + (pp save-place-alist (current-buffer))) (let ((version-control (cond ((null save-place-version-control) nil) |