diff options
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/files.el | 5 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 17cbc948536..00a48ff73c1 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -8,6 +8,9 @@ | |||
| 8 | 8 | ||
| 9 | 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org> | 9 | 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org> |
| 10 | 10 | ||
| 11 | * files.el (make-directory): Clarify that an error will be raised | ||
| 12 | if there's an error (bug#6397). | ||
| 13 | |||
| 11 | * startup.el (initial-buffer-choice): Add `none' as a choice | 14 | * startup.el (initial-buffer-choice): Add `none' as a choice |
| 12 | (bug#6234). | 15 | (bug#6234). |
| 13 | 16 | ||
diff --git a/lisp/files.el b/lisp/files.el index bf38ce39a07..0b253fcc297 100644 --- a/lisp/files.el +++ b/lisp/files.el | |||
| @@ -4778,7 +4778,10 @@ visited a file in a nonexistent directory. | |||
| 4778 | 4778 | ||
| 4779 | Noninteractively, the second (optional) argument PARENTS, if | 4779 | Noninteractively, the second (optional) argument PARENTS, if |
| 4780 | non-nil, says whether to create parent directories that don't | 4780 | non-nil, says whether to create parent directories that don't |
| 4781 | exist. Interactively, this happens by default." | 4781 | exist. Interactively, this happens by default. |
| 4782 | |||
| 4783 | If creating the directory or directories fail, an error will be | ||
| 4784 | raised." | ||
| 4782 | (interactive | 4785 | (interactive |
| 4783 | (list (read-file-name "Make directory: " default-directory default-directory | 4786 | (list (read-file-name "Make directory: " default-directory default-directory |
| 4784 | nil nil) | 4787 | nil nil) |