emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/helm 5b0f2a1cb5 1/2: Fix issue of "Invalid function: (helm


From: ELPA Syncer
Subject: [nongnu] elpa/helm 5b0f2a1cb5 1/2: Fix issue of "Invalid function: (helm-apropos-default-sort-fn)"
Date: Thu, 16 Jun 2022 06:02:58 -0400 (EDT)

branch: elpa/helm
commit 5b0f2a1cb5eadc8da6cd5a0cfd325f1ad6ad69f0
Author: Jian Wang <leuven65@gmail.com>
Commit: Jian Wang <leuven65@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

[Prev in Thread] Current Thread [Next in Thread]