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

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

[nongnu] elpa/helm 90ac29c651 9/9: Candidates are now strings with new s


From: ELPA Syncer
Subject: [nongnu] elpa/helm 90ac29c651 9/9: Candidates are now strings with new sources
Date: Sun, 20 Aug 2023 12:59:53 -0400 (EDT)

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

    Candidates are now strings with new sources
    
    fix it in helm-packages-transformer-1.
---
 helm-packages.el | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/helm-packages.el b/helm-packages.el
index 3e5a23be81..9cddf1e87d 100644
--- a/helm-packages.el
+++ b/helm-packages.el
@@ -181,10 +181,7 @@ Arg PACKAGES is a list of strings."
 (defun helm-packages-transformer-1 (candidates _source)
   "Transformer function for `helm-packages' upgrade and delete sources."
   (cl-loop for c in candidates
-           collect (cons (propertize
-                          (symbol-name c)
-                          'face 'font-lock-keyword-face)
-                         c)))
+           collect (cons (propertize c 'face 'font-lock-keyword-face) c)))
 
 (defun helm-packages-quit-an-find-file (source)
   "`find-file-target' function for `helm-packages'."



reply via email to

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