Mercurial > emacs
comparison lisp/files.el @ 92945:eec1450e060e
(make-directory): Docstring fix.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Fri, 14 Mar 2008 17:14:09 +0000 |
parents | 26e567ab8830 |
children | ee3b56d7c857 |
comparison
equal
deleted
inserted
replaced
92944:6dea71380597 | 92945:eec1450e060e |
---|---|
4150 (rename-buffer (generate-new-buffer-name base-name)) | 4150 (rename-buffer (generate-new-buffer-name base-name)) |
4151 (force-mode-line-update)))) | 4151 (force-mode-line-update)))) |
4152 | 4152 |
4153 (defun make-directory (dir &optional parents) | 4153 (defun make-directory (dir &optional parents) |
4154 "Create the directory DIR and any nonexistent parent dirs. | 4154 "Create the directory DIR and any nonexistent parent dirs. |
4155 If DIR already exists as a directory, do nothing. | 4155 If DIR already exists as a directory, signal an error, unless PARENTS is set. |
4156 | 4156 |
4157 Interactively, the default choice of directory to create | 4157 Interactively, the default choice of directory to create |
4158 is the current default directory for file names. | 4158 is the current default directory for file names. |
4159 That is useful when you have visited a file in a nonexistent directory. | 4159 That is useful when you have visited a file in a nonexistent directory. |
4160 | 4160 |