[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/helm fa98cbd196 2/4: Compute all descs even if it's longer
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/helm fa98cbd196 2/4: Compute all descs even if it's longer |
Date: |
Sat, 23 Sep 2023 01:00:43 -0400 (EDT) |
branch: elpa/helm
commit fa98cbd19648d5548962d4f7f38e890f32d96e15
Author: Thierry Volpiatto <thievol@posteo.net>
Commit: Thierry Volpiatto <thievol@posteo.net>
Compute all descs even if it's longer
Once done no process is called again, specially when using a small
value for helm-candidate-number-limit.
---
helm-elisp.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/helm-elisp.el b/helm-elisp.el
index e250eb74d7..bd744a6424 100644
--- a/helm-elisp.el
+++ b/helm-elisp.el
@@ -934,8 +934,8 @@ description change you can reset the caches with a prefix
arg."
:data #'helm-locate-library-scan-list
:fuzzy-match helm-locate-library-fuzzy-match
:keymap helm-generic-files-map
- :filtered-candidate-transformer
- (lambda (candidates _source)
+ :candidate-transformer
+ (lambda (candidates)
(cl-loop with lgst = (helm-in-buffer-get-longest-candidate)
for c in candidates
for bn = (helm-basename c 2)