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

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

[nongnu] elpa/helm b60a8e9cdb 5/9: Fix predicate for variable in helm-ap


From: ELPA Syncer
Subject: [nongnu] elpa/helm b60a8e9cdb 5/9: Fix predicate for variable in helm-apropos
Date: Sun, 20 Aug 2023 12:59:53 -0400 (EDT)

branch: elpa/helm
commit b60a8e9cdb1ee2ed63b4dd7b5edf65fa2e3acdc5
Author: Thierry Volpiatto <thievol@posteo.net>
Commit: Thierry Volpiatto <thievol@posteo.net>

    Fix predicate for variable in helm-apropos
---
 helm-elisp.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/helm-elisp.el b/helm-elisp.el
index 3350e5fbd4..85f0d2f383 100644
--- a/helm-elisp.el
+++ b/helm-elisp.el
@@ -621,7 +621,9 @@ is only used to test DEFAULT."
   (helm-build-in-buffer-source "Variables"
     :init (lambda ()
             (helm-apropos-init
-             (lambda (x) (and (boundp x) (not (keywordp x)))) default))
+             (lambda (x)
+               (and (boundp x) (not (keywordp x)) (not (class-p x))))
+             default))
     :fuzzy-match helm-apropos-fuzzy-match
     :filtered-candidate-transformer
     (delq nil (list (and (null helm-apropos-fuzzy-match)



reply via email to

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