Mercurial > emacs
changeset 81349:f067f47d359f
(savehist-file): Use user-emacs-directory.
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Wed, 13 Jun 2007 00:05:47 +0000 |
parents | fc9041cfe332 |
children | e345103787bc |
files | lisp/savehist.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/savehist.el Wed Jun 13 00:05:37 2007 +0000 +++ b/lisp/savehist.el Wed Jun 13 00:05:47 2007 +0000 @@ -101,8 +101,8 @@ (cond ;; Backward compatibility with previous versions of savehist. ((file-exists-p "~/.emacs-history") "~/.emacs-history") - ((and (not (featurep 'xemacs)) (file-directory-p "~/.emacs.d/")) - "~/.emacs.d/history") + ((and (not (featurep 'xemacs)) (file-directory-p user-emacs-directory)) + (concat user-emacs-directory "history")) ((and (featurep 'xemacs) (file-directory-p "~/.xemacs/")) "~/.xemacs/history") ;; For users without `~/.emacs.d/' or `~/.xemacs/'.