]> git.eshelyaron.com Git - emacs.git/commitdiff
(normal-top-level): Set auto-save-list-file-name.
authorRichard M. Stallman <rms@gnu.org>
Sun, 30 Apr 1995 19:50:00 +0000 (19:50 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 30 Apr 1995 19:50:00 +0000 (19:50 +0000)
lisp/startup.el

index e059ff0fc0d17d6d99f90e740dae09c256c7f873..c12e3c893b3d4bf5c09ca309b352d16ff6cc25c7 100644 (file)
@@ -224,6 +224,13 @@ specified by the LC_ALL, LC_CTYPE and LANG environment variables.")
     (setq user-mail-address (concat (user-login-name) "@"
                                    (or mail-host-address
                                        (system-name))))
+    ;; Specify the file for recording all the auto save files of this session.
+    ;; This is used by multiple-recover.
+    (setq auto-save-list-file-name
+         (expand-file-name
+          (format "~/.saves-%d-%s"
+                  (emacs-pid)
+                  (or mail-host-address (system-name)))))
     (let ((menubar-bindings-done nil))
       (unwind-protect
          (command-line)