changeset 106992:405563a1dc5c

* lisp/files.el (delete-directory): Fix typo in last change.
author Chong Yidong <cyd@stupidchicken.com>
date Tue, 26 Jan 2010 22:36:36 -0500
parents 4b75ffbc9b2f
children ba0145049d09
files lisp/files.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/files.el	Tue Jan 26 22:17:23 2010 -0500
+++ b/lisp/files.el	Tue Jan 26 22:36:36 2010 -0500
@@ -4692,8 +4692,8 @@
 		    (delete-file file)))
 		;; We do not want to delete "." and "..".
 		(directory-files
-		 directory 'full directory-files-no-dot-files-regexp))
-	(delete-directory-internal directory))))))
+		 directory 'full directory-files-no-dot-files-regexp)))
+      (delete-directory-internal directory)))))
 
 (defun copy-directory (directory newname &optional keep-time parents)
   "Copy DIRECTORY to NEWNAME.  Both args must be strings.