diff options
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/startup.el | 3 |
2 files changed, 7 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index fd45314b2af..5eb90df9ac7 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2002-03-30 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * files.el (auto-save-file-name-transforms): Fix last change. | ||
| 4 | |||
| 5 | * startup.el (command-line): Fix last change. | ||
| 6 | |||
| 1 | 2002-03-29 Richard M. Stallman <rms@gnu.org> | 7 | 2002-03-29 Richard M. Stallman <rms@gnu.org> |
| 2 | 8 | ||
| 3 | * subr.el (play-sound-file): Moved to simple.el. | 9 | * subr.el (play-sound-file): Moved to simple.el. |
diff --git a/lisp/startup.el b/lisp/startup.el index bff519156c3..2a3ae710c6a 100644 --- a/lisp/startup.el +++ b/lisp/startup.el | |||
| @@ -657,8 +657,7 @@ or `CVS', and any subdirectory that contains a file named `.nosearch'." | |||
| 657 | (list (list "\\`/[^/]*:\\(.+/\\)*\\(.*\\)" | 657 | (list (list "\\`/[^/]*:\\(.+/\\)*\\(.*\\)" |
| 658 | ;; Don't put "\\2" inside expand-file-name, since | 658 | ;; Don't put "\\2" inside expand-file-name, since |
| 659 | ;; it will be transformed to "/2" on DOS/Windows. | 659 | ;; it will be transformed to "/2" on DOS/Windows. |
| 660 | (concat (expand-file-name temporary-file-directory) | 660 | (concat temporary-file-directory "\\2")))) |
| 661 | "\\2")))) | ||
| 662 | 661 | ||
| 663 | ;; See if we should import version-control from the environment variable. | 662 | ;; See if we should import version-control from the environment variable. |
| 664 | (let ((vc (getenv "VERSION_CONTROL"))) | 663 | (let ((vc (getenv "VERSION_CONTROL"))) |