branch: master
commit 35449488ea66bd0f61083cb976d43faaaa10229a
Author: Thierry Volpiatto <[email protected]>
Commit: Thierry Volpiatto <[email protected]>
* helm-async.el (dired-create-files): No need to backquote callback.
---
helm-async.el | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/helm-async.el b/helm-async.el
index 0b329f9..d91e1a0 100644
--- a/helm-async.el
+++ b/helm-async.el
@@ -175,8 +175,8 @@ old file was marked."
(setq helm-async-operation nil)
(let (dired-create-files-failures failures async-fn-list
skipped (success-count 0) (total (length fn-list))
- (callback `(lambda (&optional ignore)
- (helm-async-after-file-create))))
+ (callback '(lambda (&optional ignore)
+ (helm-async-after-file-create))))
(let (to overwrite-query
overwrite-backup-query) ; for dired-handle-overwrite
(dolist (from fn-list)