From: Eli Zaretskii Date: Sun, 19 Oct 2008 10:12:01 +0000 (+0000) Subject: (savehist-file): Run file names that begin with a period thru X-Git-Tag: emacs-pretest-23.0.90~2380 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5b9bdd5b852122a890ab56d590be83bc94200184;p=emacs.git (savehist-file): Run file names that begin with a period thru `convert-standard-filename'. --- 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'