From 1d78a746965605e9ed6a3a377c5dd63f692b3ff6 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Tue, 26 Jan 2010 22:36:36 -0500 Subject: [PATCH] * lisp/files.el (delete-directory): Fix typo in last change. --- lisp/files.el | 4 ++-- 1 file 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. -- 2.39.5