branch: elpa/helm
commit 91ff363c0f872df2d1ddda5b1441faf29c0d62e8
Merge: 6465eaff08 5b0f2a1cb5
Author: Thierry Volpiatto <thie...@posteo.net>
Commit: GitHub <nore...@github.com>

    Merge pull request #2523 from leuven65/master
    
    Fix issue of "Invalid function: (helm-apropos-default-sort-fn)"
---
 helm-elisp.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/helm-elisp.el b/helm-elisp.el
index c398ff93e2..1d1dbde26d 100644
--- a/helm-elisp.el
+++ b/helm-elisp.el
@@ -627,7 +627,7 @@ is only used to test DEFAULT."
     :filtered-candidate-transformer
     (delq nil (list
                (and (null helm-apropos-fuzzy-match)
-                    '(helm-apropos-default-sort-fn))
+                    #'helm-apropos-default-sort-fn)
                (lambda (candidates _source)
                  (cl-loop for c in candidates
                           collect (propertize c 'face (intern c))))

Reply via email to