summaryrefslogtreecommitdiff
path: root/lisp/savehist.el
diff options
context:
space:
mode:
authorChong Yidong <cyd@stupidchicken.com>2007-06-13 00:05:47 +0000
committerChong Yidong <cyd@stupidchicken.com>2007-06-13 00:05:47 +0000
commite3af1e5d00b695917837b5ed4a7a07ba8160dbdf (patch)
tree30702837803060365adf06b210ec1ad135bb24b3 /lisp/savehist.el
parent23afd1c8b6811891bccc193813f9bc65855adba0 (diff)
downloademacs-e3af1e5d00b695917837b5ed4a7a07ba8160dbdf.tar.gz
(savehist-file): Use user-emacs-directory.
Diffstat (limited to 'lisp/savehist.el')
-rw-r--r--lisp/savehist.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/savehist.el b/lisp/savehist.el
index 9555bce9bd4..9343fc2ccb1 100644
--- a/lisp/savehist.el
+++ b/lisp/savehist.el
@@ -101,8 +101,8 @@ minibuffer histories, such as `compile-command' or `kill-ring'."
(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/'.