diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2008-03-14 17:14:09 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2008-03-14 17:14:09 +0000 |
commit | ae0ece90c666ebd0f850481a0620744ba86dcb1f (patch) | |
tree | be4664b559a9c36f8a58d0d0e33790c2ebc22e3f /lisp/files.el | |
parent | 116d5bc76a7c554b102813409694399765e35355 (diff) | |
download | emacs-ae0ece90c666ebd0f850481a0620744ba86dcb1f.tar.gz |
(make-directory): Docstring fix.
Diffstat (limited to 'lisp/files.el')
-rw-r--r-- | lisp/files.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/files.el b/lisp/files.el index a327060dbd0..14ec38e0bf6 100644 --- a/lisp/files.el +++ b/lisp/files.el @@ -4152,7 +4152,7 @@ or multiple mail buffers, etc." (defun make-directory (dir &optional parents) "Create the directory DIR and any nonexistent parent dirs. -If DIR already exists as a directory, do nothing. +If DIR already exists as a directory, signal an error, unless PARENTS is set. Interactively, the default choice of directory to create is the current default directory for file names. |