summaryrefslogtreecommitdiff
path: root/lisp/savehist.el
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2008-10-19 10:12:01 +0000
committerEli Zaretskii <eliz@gnu.org>2008-10-19 10:12:01 +0000
commit5b9bdd5b852122a890ab56d590be83bc94200184 (patch)
treec26448716aa04bef16c0e2e5c5728ada62764fd9 /lisp/savehist.el
parent1bfda128905d677589fbc02b35e6c0eccc0e8adc (diff)
downloademacs-5b9bdd5b852122a890ab56d590be83bc94200184.tar.gz
(savehist-file): Run file names that begin with a period thru
`convert-standard-filename'.
Diffstat (limited to 'lisp/savehist.el')
-rw-r--r--lisp/savehist.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/savehist.el b/lisp/savehist.el
index c1c9a3db8fa..e3150565d56 100644
--- a/lisp/savehist.el
+++ b/lisp/savehist.el
@@ -104,7 +104,7 @@ minibuffer histories, such as `compile-command' or `kill-ring'."
((and (featurep 'xemacs) (file-directory-p "~/.xemacs/"))
"~/.xemacs/history")
;; For users without `~/.emacs.d/' or `~/.xemacs/'.
- (t "~/.emacs-history"))
+ (t (convert-standard-filename "~/.emacs-history")))
"*File name where minibuffer history is saved to and loaded from.
The minibuffer history is a series of Lisp expressions loaded
automatically when `savehist-mode' is turned on. See `savehist-mode'