mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-02 11:21:42 +00:00
(command-line-1): Don't signal an error if the
directory for auto-save-list files does not yet exist.
This commit is contained in:
parent
a4776185ab
commit
cfc75d051e
@ -1,3 +1,8 @@
|
||||
2000-05-17 Eli Zaretskii <eliz@is.elta.co.il>
|
||||
|
||||
* startup.el (command-line-1): Don't signal an error if the
|
||||
directory for auto-save-list files does not yet exist.
|
||||
|
||||
2000-05-17 Kenichi Handa <handa@etl.go.jp>
|
||||
|
||||
* international/mule-conf.el (arabic-iso8859-6): Fix typo.
|
||||
|
@ -939,6 +939,11 @@ Mode-specific menu C-mouse-3 (third button, with CTRL)"))
|
||||
\(`C-' means use the CTRL key. `M-' means use the Meta (or Alt) key.
|
||||
If you have no Meta key, you may instead type ESC followed by the character.)")
|
||||
(and auto-save-list-file-prefix
|
||||
;; Don't signal an error if the
|
||||
;; directory for auto-save-list files
|
||||
;; does not yet exist.
|
||||
(file-directory-p (file-name-directory
|
||||
auto-save-list-file-prefix))
|
||||
(directory-files
|
||||
(file-name-directory auto-save-list-file-prefix)
|
||||
nil
|
||||
|
Loading…
Reference in New Issue
Block a user