From 945a0a0ccc067a4dcaa1fbab074f94605fac9a3a Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Fri, 24 Oct 2008 22:50:13 +0000 Subject: [PATCH] Revert part of last change; it breaks bootstrapping on some systems. --- lisp/ChangeLog | 1 - lisp/startup.el | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c115c29d93b..dd2ec356b08 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -10,7 +10,6 @@ (image-dired-temp-rotate-image-file): * savehist.el (savehist-file): * server.el (server-auth-dir): - * startup.el (auto-save-list-file-prefix): * thumbs.el (thumbs-thumbsdir): * tutorial.el (tutorial--saved-dir): * play/gamegrid.el (gamegrid-user-score-file-directory): Use it. 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, -- 2.39.5