summaryrefslogtreecommitdiff
path: root/helm-mode.el
diff options
context:
space:
mode:
Diffstat (limited to 'helm-mode.el')
-rw-r--r--helm-mode.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/helm-mode.el b/helm-mode.el
index 17a69855..c8408bf5 100644
--- a/helm-mode.el
+++ b/helm-mode.el
@@ -136,7 +136,7 @@ To fuzzy match `completion-at-point' and friends see
(interactive)
(with-helm-alive-p
(helm-exit-and-execute-action
- #'(lambda (_candidate)
+ (lambda (_candidate)
(identity "")))))
(defun helm-mode--keyboard-quit ()
@@ -1080,11 +1080,11 @@ Can be used as value for `completion-in-region-function'."
(sort candidates 'helm-generic-sort-fn))))
:exec-when-only-one t
:quit-when-no-cand
- #'(lambda ()
+ (lambda ()
;; Delay message to overwrite "Quit".
(run-with-timer
0.01 nil
- #'(lambda ()
+ (lambda ()
(message "[No matches]")))
t) ; exit minibuffer immediately.
:must-match require-match))))