branch: elpa/helm
commit 5b0f2a1cb5eadc8da6cd5a0cfd325f1ad6ad69f0
Author: Jian Wang <leuve...@gmail.com>
Commit: Jian Wang <leuve...@gmail.com>

    Fix issue of "Invalid function: (helm-apropos-default-sort-fn)"
    
    The issue pops up on the command "helm-apropos"
---
 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