summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChong Yidong <cyd@stupidchicken.com>2010-01-26 22:36:36 -0500
committerChong Yidong <cyd@stupidchicken.com>2010-01-26 22:36:36 -0500
commitfc0439192927113fbec95a32c64f4c4775d006d5 (patch)
tree651e3b3847cc72591932387bb7764ddb6ae580e6
parent136ecb6ed628efc344b2d7cb7461e93421bc1ecf (diff)
downloademacs-fc0439192927113fbec95a32c64f4c4775d006d5.tar.gz
* lisp/files.el (delete-directory): Fix typo in last change.
-rw-r--r--lisp/files.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/files.el b/lisp/files.el
index bcaba300ae6..d372ff3420a 100644
--- a/lisp/files.el
+++ b/lisp/files.el
@@ -4692,8 +4692,8 @@ If RECURSIVE is non-nil, all files in DIRECTORY are deleted as well."
(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.