aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/emacs/ChangeLog5
-rw-r--r--doc/emacs/files.texi16
2 files changed, 13 insertions, 8 deletions
diff --git a/doc/emacs/ChangeLog b/doc/emacs/ChangeLog
index 9fe09905ff5..5536815fe48 100644
--- a/doc/emacs/ChangeLog
+++ b/doc/emacs/ChangeLog
@@ -1,3 +1,8 @@
12009-10-01 Michael Albinus <michael.albinus@gmx.de>
2
3 * files.texi (Directories): delete-directory prompts for recursive
4 deletion.
5
12009-09-30 Glenn Morris <rgm@gnu.org> 62009-09-30 Glenn Morris <rgm@gnu.org>
2 7
3 * ack.texi (Acknowledgments): 8 * ack.texi (Acknowledgments):
diff --git a/doc/emacs/files.texi b/doc/emacs/files.texi
index 34447f06096..be987afbbe5 100644
--- a/doc/emacs/files.texi
+++ b/doc/emacs/files.texi
@@ -1199,8 +1199,8 @@ Display a verbose directory listing.
1199@item M-x make-directory @key{RET} @var{dirname} @key{RET} 1199@item M-x make-directory @key{RET} @var{dirname} @key{RET}
1200Create a new directory named @var{dirname}. 1200Create a new directory named @var{dirname}.
1201@item M-x delete-directory @key{RET} @var{dirname} @key{RET} 1201@item M-x delete-directory @key{RET} @var{dirname} @key{RET}
1202Delete the directory named @var{dirname}. It must be empty, 1202Delete the directory named @var{dirname}. If it isn't empty,
1203or you get an error. 1203you will be asked whether you want to delete it recursively.
1204@end table 1204@end table
1205 1205
1206@findex list-directory 1206@findex list-directory
@@ -1247,12 +1247,12 @@ this, it runs the program specified by
1247 1247
1248 The command @kbd{M-x delete-directory} prompts for a directory name 1248 The command @kbd{M-x delete-directory} prompts for a directory name
1249using the minibuffer, and deletes the directory if it is empty. If 1249using the minibuffer, and deletes the directory if it is empty. If
1250the directory is not empty, this signals an error. On systems that 1250the directory is not empty, you will be asked whether you want to
1251have a ``Trash'' or ``Recycle Bin'' feature, you can make this command 1251delete it recursively. On systems that have a ``Trash'' or ``Recycle
1252move the specified directory to the Trash or Recycle Bin, instead of 1252Bin'' feature, you can make this command move the specified directory
1253deleting it outright, by changing the variable 1253to the Trash or Recycle Bin, instead of deleting it outright, by
1254@code{delete-by-moving-to-trash} to @code{t}. @xref{Misc File Ops}, 1254changing the variable @code{delete-by-moving-to-trash} to @code{t}.
1255for more information about using the Trash. 1255@xref{Misc File Ops}, for more information about using the Trash.
1256 1256
1257@node Comparing Files 1257@node Comparing Files
1258@section Comparing Files 1258@section Comparing Files