aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/eshell/eshell.el3
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 3b16df17a13..cdb98b15551 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12010-12-16 Leo <sdl.web@gmail.com>
2
3 * eshell/eshell.el (eshell-directory-name): Use
4 locate-user-emacs-file (Bug#7578).
5
12010-12-15 Glenn Morris <rgm@gnu.org> 62010-12-15 Glenn Morris <rgm@gnu.org>
2 7
3 * loadup.el (symbol-file-load-history-loaded): Remove; unused. 8 * loadup.el (symbol-file-load-history-loaded): Remove; unused.
diff --git a/lisp/eshell/eshell.el b/lisp/eshell/eshell.el
index 89ec3ab9c60..3c534f049c5 100644
--- a/lisp/eshell/eshell.el
+++ b/lisp/eshell/eshell.el
@@ -285,7 +285,8 @@ shells such as bash, zsh, rc, 4dos."
285 "`eshell-buffer-name' is a member of `same-window-buffer-names'" 285 "`eshell-buffer-name' is a member of `same-window-buffer-names'"
286 (member eshell-buffer-name same-window-buffer-names)) 286 (member eshell-buffer-name same-window-buffer-names))
287 287
288(defcustom eshell-directory-name (convert-standard-filename "~/.eshell/") 288(defcustom eshell-directory-name
289 (locate-user-emacs-file "eshell/" ".eshell/")
289 "The directory where Eshell control files should be kept." 290 "The directory where Eshell control files should be kept."
290 :type 'directory 291 :type 'directory
291 :group 'eshell) 292 :group 'eshell)