branch: master
commit eda8d32703b2af65a395d0a82b69940a7bd4aa84
Author: Thierry Volpiatto <[email protected]>
Commit: Thierry Volpiatto <[email protected]>
* helm-async.el (dired-create-file): Use quote.
---
helm-async.el | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/helm-async.el b/helm-async.el
index d2fdb4a..3cb40b3 100644
--- a/helm-async.el
+++ b/helm-async.el
@@ -186,7 +186,7 @@ ESC or `q' to not overwrite any of the remaining files,
(async-start `(lambda ()
(require 'cl) (require 'dired-aux)
,(async-inject-variables helm-async-env-variables-regexp)
- (let ((dired-recursive-copies 'always))
+ (let ((dired-recursive-copies (quote always)))
(loop for (f . d) in (quote ,async-fn-list)
do (funcall (quote ,file-creator) f d t)))
,(helm-async-maybe-kill-ftp))