[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)
- [nongnu] elpa/helm updated (6239110f8a -> 90ac29c651), ELPA Syncer, 2023/08/20
- [nongnu] elpa/helm afc7cd8b40 3/9: Add a FCT fn for upgrade and delete helm-packages sources, ELPA Syncer, 2023/08/20
- [nongnu] elpa/helm a23a368351 6/9: Fix one line documentation for classes, ELPA Syncer, 2023/08/20
- [nongnu] elpa/helm f55243cf7c 8/9: No need to use cl-flet in cl--print-table advice, ELPA Syncer, 2023/08/20
- [nongnu] elpa/helm b60a8e9cdb 5/9: Fix predicate for variable in helm-apropos,
ELPA Syncer <=
- [nongnu] elpa/helm db3f9e143c 7/9: Fix helm-describe-class, ELPA Syncer, 2023/08/20
- [nongnu] elpa/helm 4f6119e97a 2/9: Add a class for helm-packages, ELPA Syncer, 2023/08/20
- [nongnu] elpa/helm 99148ea546 1/9: Use in-buffer for all sources in helm-packages, ELPA Syncer, 2023/08/20
- [nongnu] elpa/helm 9bc8e78b65 4/9: Add docstrings, ELPA Syncer, 2023/08/20
- [nongnu] elpa/helm 90ac29c651 9/9: Candidates are now strings with new sources, ELPA Syncer, 2023/08/20