aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Albinus2009-10-01 15:51:43 +0000
committerMichael Albinus2009-10-01 15:51:43 +0000
commitd308026462fe0f6d441cd40fa0451d8ce965c922 (patch)
tree8c6ebabfb68337a9f2c821444f5f4b0a52fb55d4
parentbd51ea7fe5ef2eb34bb1b28d3cc53d643001483f (diff)
downloademacs-d308026462fe0f6d441cd40fa0451d8ce965c922.tar.gz
emacs-d308026462fe0f6d441cd40fa0451d8ce965c922.zip
* files.texi (Directories): delete-directory has an optional
parameter RECURSIVE.
-rw-r--r--doc/lispref/ChangeLog5
-rw-r--r--doc/lispref/files.texi7
-rw-r--r--etc/ChangeLog4
-rw-r--r--etc/NEWS3
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 @@
12009-10-01 Michael Albinus <michael.albinus@gmx.de>
2
3 * files.texi (Create/Delete Dirs): delete-directory has an
4 optional parameter RECURSIVE.
5
12009-10-01 Stefan Monnier <monnier@iro.umontreal.ca> 62009-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
2505This command deletes the directory named @var{dirname}. The function 2505This 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
2507must use @code{delete-directory} for them. If the directory contains 2507must use @code{delete-directory} for them. If @var{recursive} is
2508any 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
2511parent directories. 2512parent directories.
diff --git a/etc/ChangeLog b/etc/ChangeLog
index 9becb86ce37..861b2064e7f 100644
--- a/etc/ChangeLog
+++ b/etc/ChangeLog
@@ -1,3 +1,7 @@
12009-10-01 Michael Albinus <michael.albinus@gmx.de>
2
3 * NEWS: delete-directory has an optional parameter RECURSIVE.
4
12009-10-01 Carsten Dominik <dominik@u016822.science.uva.nl> 52009-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.
diff --git a/etc/NEWS b/etc/NEWS
index 093ca72b2a5..9003f42ee96 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -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---