summaryrefslogtreecommitdiff
path: root/helm-files.el
diff options
context:
space:
mode:
authorThierry Volpiatto <thierry.volpiatto@gmail.com>2016-08-28 06:45:40 +0200
committerThierry Volpiatto <thierry.volpiatto@gmail.com>2016-08-28 07:42:31 +0200
commitb5468cfb2ce35e3ff9212885d27675f19cb74210 (patch)
tree8607b57c1bffbfb9c1d97f1117d99320c8775d6d /helm-files.el
parentc060a9761d0f97e38e5fcb89c55ac09b7d3ab95f (diff)
Unquote some more lambdas.
* helm-elisp.el (helm-lisp-completion-at-point): Do it. * helm-files.el (helm-find-files-1): Do it. * helm-mode.el (helm-comp-read-get-candidates): Do it. * helm-source.el (helm-source-add-action-to-source-if): Do it. * helm.el (helm-run-multi-key-command): Do it. (helm-add-action-to-source-if): Do it. (helm-resume-previous-session-after-quit): Do it.
Diffstat (limited to 'helm-files.el')
-rw-r--r--helm-files.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/helm-files.el b/helm-files.el
index 13944eab..6ec499bc 100644
--- a/helm-files.el
+++ b/helm-files.el
@@ -2575,11 +2575,11 @@ Use it for non--interactive calls of `helm-find-files'."
:default def
:prompt "Find files or url: "
:buffer "*helm find files*")
- (helm-attrset 'resume `(lambda ()
- (setq helm-ff-default-directory
- ,helm-ff-default-directory
- helm-ff-last-expanded
- ,helm-ff-last-expanded))
+ (helm-attrset 'resume (lambda ()
+ (setq helm-ff-default-directory
+ helm-ff-default-directory
+ helm-ff-last-expanded
+ helm-ff-last-expanded))
helm-source-find-files)
(setq helm-ff-default-directory nil))))