# HG changeset patch # User Juanma Barranquero # Date 1224888613 0 # Node ID 9c18e435ac9bd89e30781dcf283b69818340e284 # Parent 4c0755112d27d6123eae84cf0e9b13690cd49ffa Revert part of last change; it breaks bootstrapping on some systems. diff -r 4c0755112d27 -r 9c18e435ac9b lisp/ChangeLog --- a/lisp/ChangeLog Fri Oct 24 19:00:42 2008 +0000 +++ b/lisp/ChangeLog Fri Oct 24 22:50:13 2008 +0000 @@ -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 -r 4c0755112d27 -r 9c18e435ac9b lisp/startup.el --- a/lisp/startup.el Fri Oct 24 19:00:42 2008 +0000 +++ b/lisp/startup.el Fri Oct 24 22:50:13 2008 +0000 @@ -350,9 +350,9 @@ (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,