diff options
| author | Eli Zaretskii | 2000-05-17 11:38:40 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2000-05-17 11:38:40 +0000 |
| commit | cfc75d051e5ec460242adea351d3173bfcc36fb5 (patch) | |
| tree | b131a916fd961218c5a245c7f0f56eda039aa7b7 | |
| parent | a4776185ab4499af39dda16274b98bea006c95f9 (diff) | |
| download | emacs-cfc75d051e5ec460242adea351d3173bfcc36fb5.tar.gz emacs-cfc75d051e5ec460242adea351d3173bfcc36fb5.zip | |
(command-line-1): Don't signal an error if the
directory for auto-save-list files does not yet exist.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/startup.el | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 83e692ec238..189f91aa895 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2000-05-17 Eli Zaretskii <eliz@is.elta.co.il> | ||
| 2 | |||
| 3 | * startup.el (command-line-1): Don't signal an error if the | ||
| 4 | directory for auto-save-list files does not yet exist. | ||
| 5 | |||
| 1 | 2000-05-17 Kenichi Handa <handa@etl.go.jp> | 6 | 2000-05-17 Kenichi Handa <handa@etl.go.jp> |
| 2 | 7 | ||
| 3 | * international/mule-conf.el (arabic-iso8859-6): Fix typo. | 8 | * international/mule-conf.el (arabic-iso8859-6): Fix typo. |
diff --git a/lisp/startup.el b/lisp/startup.el index 75559d1d955..510a529581e 100644 --- a/lisp/startup.el +++ b/lisp/startup.el | |||
| @@ -939,6 +939,11 @@ Mode-specific menu C-mouse-3 (third button, with CTRL)")) | |||
| 939 | \(`C-' means use the CTRL key. `M-' means use the Meta (or Alt) key. | 939 | \(`C-' means use the CTRL key. `M-' means use the Meta (or Alt) key. |
| 940 | If you have no Meta key, you may instead type ESC followed by the character.)") | 940 | If you have no Meta key, you may instead type ESC followed by the character.)") |
| 941 | (and auto-save-list-file-prefix | 941 | (and auto-save-list-file-prefix |
| 942 | ;; Don't signal an error if the | ||
| 943 | ;; directory for auto-save-list files | ||
| 944 | ;; does not yet exist. | ||
| 945 | (file-directory-p (file-name-directory | ||
| 946 | auto-save-list-file-prefix)) | ||
| 942 | (directory-files | 947 | (directory-files |
| 943 | (file-name-directory auto-save-list-file-prefix) | 948 | (file-name-directory auto-save-list-file-prefix) |
| 944 | nil | 949 | nil |