diff options
author | Eli Zaretskii <eliz@gnu.org> | 2008-10-19 10:11:20 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2008-10-19 10:11:20 +0000 |
commit | 1bfda128905d677589fbc02b35e6c0eccc0e8adc (patch) | |
tree | 522f4d0ca39d4efccbe5c266926ee5ac05fc86ce /lisp/recentf.el | |
parent | 445978089b195c0c7dd2ae294079511a7f4378e1 (diff) | |
download | emacs-1bfda128905d677589fbc02b35e6c0eccc0e8adc.tar.gz |
(recentf-save-file): Run file names that begin with a period thru
`convert-standard-filename'.
Diffstat (limited to 'lisp/recentf.el')
-rw-r--r-- | lisp/recentf.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/recentf.el b/lisp/recentf.el index 0a21a9dcc8e..20ff12c33da 100644 --- a/lisp/recentf.el +++ b/lisp/recentf.el @@ -67,7 +67,7 @@ See the command `recentf-save-list'." :group 'recentf :type 'integer) -(defcustom recentf-save-file "~/.recentf" +(defcustom recentf-save-file (convert-standard-filename "~/.recentf") "File to save the recent list into." :group 'recentf :type 'file |