diff options
| author | Michael Albinus | 2009-10-01 15:51:43 +0000 |
|---|---|---|
| committer | Michael Albinus | 2009-10-01 15:51:43 +0000 |
| commit | d308026462fe0f6d441cd40fa0451d8ce965c922 (patch) | |
| tree | 8c6ebabfb68337a9f2c821444f5f4b0a52fb55d4 | |
| parent | bd51ea7fe5ef2eb34bb1b28d3cc53d643001483f (diff) | |
| download | emacs-d308026462fe0f6d441cd40fa0451d8ce965c922.tar.gz emacs-d308026462fe0f6d441cd40fa0451d8ce965c922.zip | |
* files.texi (Directories): delete-directory has an optional
parameter RECURSIVE.
| -rw-r--r-- | doc/lispref/ChangeLog | 5 | ||||
| -rw-r--r-- | doc/lispref/files.texi | 7 | ||||
| -rw-r--r-- | etc/ChangeLog | 4 | ||||
| -rw-r--r-- | etc/NEWS | 3 |
4 files changed, 16 insertions, 3 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index f654490f5c6..1fcb1d3533a 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2009-10-01 Michael Albinus <michael.albinus@gmx.de> | ||
| 2 | |||
| 3 | * files.texi (Create/Delete Dirs): delete-directory has an | ||
| 4 | optional parameter RECURSIVE. | ||
| 5 | |||
| 1 | 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca> | 6 | 2009-10-01 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 7 | ||
| 3 | * buffers.texi (Swapping Text): Minor clarification. | 8 | * buffers.texi (Swapping Text): Minor clarification. |
diff --git a/doc/lispref/files.texi b/doc/lispref/files.texi index cbba096c7b9..81f342aee97 100644 --- a/doc/lispref/files.texi +++ b/doc/lispref/files.texi | |||
| @@ -2501,11 +2501,12 @@ if they don't already exist. | |||
| 2501 | @code{mkdir} is an alias for this. | 2501 | @code{mkdir} is an alias for this. |
| 2502 | @end deffn | 2502 | @end deffn |
| 2503 | 2503 | ||
| 2504 | @deffn Command delete-directory dirname | 2504 | @deffn Command delete-directory dirname &optional recursive |
| 2505 | This command deletes the directory named @var{dirname}. The function | 2505 | This command deletes the directory named @var{dirname}. The function |
| 2506 | @code{delete-file} does not work for files that are directories; you | 2506 | @code{delete-file} does not work for files that are directories; you |
| 2507 | must use @code{delete-directory} for them. If the directory contains | 2507 | must use @code{delete-directory} for them. If @var{recursive} is |
| 2508 | any files, @code{delete-directory} signals an error. | 2508 | @code{nil}, and the directory contains any files, |
| 2509 | @code{delete-directory} signals an error. | ||
| 2509 | 2510 | ||
| 2510 | @code{delete-directory} only follows symbolic links at the level of | 2511 | @code{delete-directory} only follows symbolic links at the level of |
| 2511 | parent directories. | 2512 | parent directories. |
diff --git a/etc/ChangeLog b/etc/ChangeLog index 9becb86ce37..861b2064e7f 100644 --- a/etc/ChangeLog +++ b/etc/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2009-10-01 Michael Albinus <michael.albinus@gmx.de> | ||
| 2 | |||
| 3 | * NEWS: delete-directory has an optional parameter RECURSIVE. | ||
| 4 | |||
| 1 | 2009-10-01 Carsten Dominik <dominik@u016822.science.uva.nl> | 5 | 2009-10-01 Carsten Dominik <dominik@u016822.science.uva.nl> |
| 2 | 6 | ||
| 3 | * refcards/orgcard.tex: New version number. | 7 | * refcards/orgcard.tex: New version number. |
| @@ -302,6 +302,9 @@ be in use: | |||
| 302 | time-stamp-yyyy-mm-dd, time-stamp-yymmdd, time-stamp-hh:mm:ss, | 302 | time-stamp-yyyy-mm-dd, time-stamp-yymmdd, time-stamp-hh:mm:ss, |
| 303 | time-stamp-hhmm, baud-rate | 303 | time-stamp-hhmm, baud-rate |
| 304 | 304 | ||
| 305 | ** `delete-directory' has an optional parameter RECURSIVE. | ||
| 306 | |||
| 307 | |||
| 305 | * Changes in Emacs 23.2 on non-free operating systems | 308 | * Changes in Emacs 23.2 on non-free operating systems |
| 306 | 309 | ||
| 307 | --- | 310 | --- |