]> git.eshelyaron.com Git - emacs.git/commitdiff
(auto-save-list-file-prefix): Set default to
authorGerd Moellmann <gerd@gnu.org>
Mon, 24 Apr 2000 18:43:25 +0000 (18:43 +0000)
committerGerd Moellmann <gerd@gnu.org>
Mon, 24 Apr 2000 18:43:25 +0000 (18:43 +0000)
`~/.emacs.d/auto-save-list/.saves-' for systems other than MS-DOS.

lisp/startup.el

index 0b378584aecd936f1f10bab9e23f3ba3b5db21b3..230988f21043151318239eb7bddbb974e802518a 100644 (file)
@@ -317,13 +317,16 @@ after your init file is read, in case it sets `mail-host-address'."
   :group 'mail)
 
 (defcustom auto-save-list-file-prefix
-  (if (eq system-type 'ms-dos)
-      "~/_s"  ; MS-DOS cannot have initial dot, and allows only 8.3 names
-    "~/.saves-")
+  (cond ((eq system-type 'ms-dos)
+        ;; MS-DOS cannot have initial dot, and allows only 8.3 names
+        "~/_s")
+       (t
+        "~/.emacs.d/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,
 if you have not already set `auto-save-list-file-name' yourself.
+Directories in the prefix will be created if necessary.
 Set this to nil if you want to prevent `auto-save-list-file-name'
 from being initialized."
   :type '(choice (const :tag "Don't record a session's auto save list" nil)