branch: master
commit 4fb51ce5c878e253061e3be8ec21a5c0cc95e3f8
Author: John Wiegley <[email protected]>
Commit: John Wiegley <[email protected]>

    Corrected a problem with async deletions
---
 dired-async.el |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dired-async.el b/dired-async.el
index 02ee42a..14efa59 100644
--- a/dired-async.el
+++ b/dired-async.el
@@ -134,7 +134,7 @@ Anything else, ask for each sub-directory."
       (setq recursive nil))
     (async-start
      `(lambda ()
-        (delete-directory ,file ,recursive ,trash))
+        (delete-directory ,file (quote ,recursive) ,trash))
      'ignore)))
 
 (defun dired-create-files (file-creator operation fn-list name-constructor

Reply via email to