diff options
| author | Richard M. Stallman | 1995-04-30 19:50:00 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-04-30 19:50:00 +0000 |
| commit | 0b9d4cf065bccd1a0588a12c60cb935f3c9986ef (patch) | |
| tree | 261970b64657dcf74665504fd7dbdb91c5811841 | |
| parent | 9aee5392730ff798eff16dd55fbc5180af64df08 (diff) | |
| download | emacs-0b9d4cf065bccd1a0588a12c60cb935f3c9986ef.tar.gz emacs-0b9d4cf065bccd1a0588a12c60cb935f3c9986ef.zip | |
(normal-top-level): Set auto-save-list-file-name.
| -rw-r--r-- | lisp/startup.el | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lisp/startup.el b/lisp/startup.el index e059ff0fc0d..c12e3c893b3 100644 --- a/lisp/startup.el +++ b/lisp/startup.el | |||
| @@ -224,6 +224,13 @@ specified by the LC_ALL, LC_CTYPE and LANG environment variables.") | |||
| 224 | (setq user-mail-address (concat (user-login-name) "@" | 224 | (setq user-mail-address (concat (user-login-name) "@" |
| 225 | (or mail-host-address | 225 | (or mail-host-address |
| 226 | (system-name)))) | 226 | (system-name)))) |
| 227 | ;; Specify the file for recording all the auto save files of this session. | ||
| 228 | ;; This is used by multiple-recover. | ||
| 229 | (setq auto-save-list-file-name | ||
| 230 | (expand-file-name | ||
| 231 | (format "~/.saves-%d-%s" | ||
| 232 | (emacs-pid) | ||
| 233 | (or mail-host-address (system-name))))) | ||
| 227 | (let ((menubar-bindings-done nil)) | 234 | (let ((menubar-bindings-done nil)) |
| 228 | (unwind-protect | 235 | (unwind-protect |
| 229 | (command-line) | 236 | (command-line) |