diff options
author | Romain Francoise <romain@orebokech.com> | 2006-09-16 18:22:01 +0000 |
---|---|---|
committer | Romain Francoise <romain@orebokech.com> | 2006-09-16 18:22:01 +0000 |
commit | c7abb1824cd3c17ed5d8bf3400b979318c66dfaa (patch) | |
tree | b1220e7e7d19265cce86f39909cba54a9168d8c8 /lisp | |
parent | be8b7dbd649cd28075352a5a459bd3c62cf249fc (diff) | |
download | emacs-c7abb1824cd3c17ed5d8bf3400b979318c66dfaa.tar.gz |
(load-save-place-alist-from-file): Use expanded name in both messages.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 5 | ||||
-rw-r--r-- | lisp/saveplace.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0b4d6147678..1a4706d3f64 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2006-09-16 Romain Francoise <romain@orebokech.com> + + * saveplace.el (load-save-place-alist-from-file): Use expanded name + in both messages. + 2006-09-16 Slawomir Nowaczyk <slawomir.nowaczyk.847@student.lu.se> * progmodes/python.el (python-preoutput-filter): diff --git a/lisp/saveplace.el b/lisp/saveplace.el index a2bc18e9de1..cfaf87852d4 100644 --- a/lisp/saveplace.el +++ b/lisp/saveplace.el @@ -238,7 +238,7 @@ may have changed\) back to `save-place-alist'." ;; load it if it exists: (if (file-readable-p file) (save-excursion - (message "Loading places from %s..." save-place-file) + (message "Loading places from %s..." file) ;; don't want to use find-file because we have been ;; adding hooks to it. (set-buffer (get-buffer-create " *Saved Places*")) |