diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2008-10-24 22:50:13 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2008-10-24 22:50:13 +0000 |
commit | 702b7afd8fdf1630c989b97ba927dc142b535a2f (patch) | |
tree | b01cfbc917f352ad4fd717629cab477d0bd7a4c5 /lisp/startup.el | |
parent | 793686355b176267aabacd138a28d77050681eb1 (diff) | |
download | emacs-702b7afd8fdf1630c989b97ba927dc142b535a2f.tar.gz |
Revert part of last change; it breaks bootstrapping on some systems.
Diffstat (limited to 'lisp/startup.el')
-rw-r--r-- | lisp/startup.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/startup.el b/lisp/startup.el index 84c7341597d..6185cd5975a 100644 --- a/lisp/startup.el +++ b/lisp/startup.el @@ -350,9 +350,9 @@ init file is read, in case it sets `mail-host-address'." (defcustom auto-save-list-file-prefix (cond ((eq system-type 'ms-dos) ;; MS-DOS cannot have initial dot, and allows only 8.3 names - (locate-user-emacs-file "auto-save.list/_s")) + (concat user-emacs-directory "auto-save.list/_s")) (t - (locate-user-emacs-file "auto-save-list/.saves-"))) + (concat user-emacs-directory "auto-save-list/.saves-"))) "Prefix for generating `auto-save-list-file-name'. This is used after reading your `.emacs' file to initialize `auto-save-list-file-name', by appending Emacs's pid and the system name, |