branch: master
commit bd43f8665a9708723c13e4ec484c56e3be223ca8
Author: Thierry Volpiatto <[email protected]>
Commit: Thierry Volpiatto <[email protected]>

    * helm-async.el (dired-create-files): Honor dired-overwrite-confirmed.
---
 helm-async.el |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/helm-async.el b/helm-async.el
index 6d611a4..db0d340 100644
--- a/helm-async.el
+++ b/helm-async.el
@@ -221,7 +221,8 @@ ESC or `q' to not overwrite any of the remaining files,
                    (file-in-directory-p destname from)
                    (error "Cannot copy `%s' into its subdirectory `%s'"
                           from to)))
-            (if helm-async-be-async
+            (if (and dired-overwrite-confirmed
+                     helm-async-be-async)
                 (push (cons from to) async-fn-list)
                 (condition-case err
                     (progn

Reply via email to