diff options
| author | Juanma Barranquero | 2008-10-24 22:50:13 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2008-10-24 22:50:13 +0000 |
| commit | 945a0a0ccc067a4dcaa1fbab074f94605fac9a3a (patch) | |
| tree | 56ddaefc7747c25e26684aa5a0617c8d7f8ee3b3 | |
| parent | e919f0b153c2815df754ad18e16e9ef4f58c0cd8 (diff) | |
| download | emacs-945a0a0ccc067a4dcaa1fbab074f94605fac9a3a.tar.gz emacs-945a0a0ccc067a4dcaa1fbab074f94605fac9a3a.zip | |
Revert part of last change; it breaks bootstrapping on some systems.
| -rw-r--r-- | lisp/ChangeLog | 1 | ||||
| -rw-r--r-- | lisp/startup.el | 4 |
2 files changed, 2 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c115c29d93b..dd2ec356b08 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -10,7 +10,6 @@ | |||
| 10 | (image-dired-temp-rotate-image-file): | 10 | (image-dired-temp-rotate-image-file): |
| 11 | * savehist.el (savehist-file): | 11 | * savehist.el (savehist-file): |
| 12 | * server.el (server-auth-dir): | 12 | * server.el (server-auth-dir): |
| 13 | * startup.el (auto-save-list-file-prefix): | ||
| 14 | * thumbs.el (thumbs-thumbsdir): | 13 | * thumbs.el (thumbs-thumbsdir): |
| 15 | * tutorial.el (tutorial--saved-dir): | 14 | * tutorial.el (tutorial--saved-dir): |
| 16 | * play/gamegrid.el (gamegrid-user-score-file-directory): Use it. | 15 | * play/gamegrid.el (gamegrid-user-score-file-directory): Use it. |
diff --git a/lisp/startup.el b/lisp/startup.el index 84c7341597d..6185cd5975a 100644 --- a/lisp/startup.el +++ b/lisp/startup.el | |||
| @@ -350,9 +350,9 @@ init file is read, in case it sets `mail-host-address'." | |||
| 350 | (defcustom auto-save-list-file-prefix | 350 | (defcustom auto-save-list-file-prefix |
| 351 | (cond ((eq system-type 'ms-dos) | 351 | (cond ((eq system-type 'ms-dos) |
| 352 | ;; MS-DOS cannot have initial dot, and allows only 8.3 names | 352 | ;; MS-DOS cannot have initial dot, and allows only 8.3 names |
| 353 | (locate-user-emacs-file "auto-save.list/_s")) | 353 | (concat user-emacs-directory "auto-save.list/_s")) |
| 354 | (t | 354 | (t |
| 355 | (locate-user-emacs-file "auto-save-list/.saves-"))) | 355 | (concat user-emacs-directory "auto-save-list/.saves-"))) |
| 356 | "Prefix for generating `auto-save-list-file-name'. | 356 | "Prefix for generating `auto-save-list-file-name'. |
| 357 | This is used after reading your `.emacs' file to initialize | 357 | This is used after reading your `.emacs' file to initialize |
| 358 | `auto-save-list-file-name', by appending Emacs's pid and the system name, | 358 | `auto-save-list-file-name', by appending Emacs's pid and the system name, |