# HG changeset patch # User Chong Yidong # Date 1181693170 0 # Node ID 0e3f82f9067ddd0ea1e10b7d4eee96f0e1d7208f # Parent e345103787bc754205354b85fe181568a07f05e3 (auto-save-list-file-prefix): Use user-emacs-directory. diff -r e345103787bc -r 0e3f82f9067d lisp/startup.el --- a/lisp/startup.el Wed Jun 13 00:06:00 2007 +0000 +++ b/lisp/startup.el Wed Jun 13 00:06:10 2007 +0000 @@ -263,9 +263,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 - "~/_emacs.d/auto-save.list/_s") + (concat user-emacs-directory "auto-save.list/_s")) (t - "~/.emacs.d/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,