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

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

[elpa] externals/vertico 95f5a4c373 1/3: Minor cleanup


From: ELPA Syncer
Subject: [elpa] externals/vertico 95f5a4c373 1/3: Minor cleanup
Date: Sat, 8 Jan 2022 15:57:56 -0500 (EST)

branch: externals/vertico
commit 95f5a4c3737215c180d0ba3fa87bc828fd182830
Author: Daniel Mendler <mail@daniel-mendler.de>
Commit: Daniel Mendler <mail@daniel-mendler.de>

    Minor cleanup
---
 vertico.el | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/vertico.el b/vertico.el
index d33062d6d7..5d0fdb3a87 100644
--- a/vertico.el
+++ b/vertico.el
@@ -248,12 +248,11 @@ The function is configured by BY, BSIZE, BINDEX, BPRED 
and PRED."
                      (plist-get completion-extra-properties 
:annotation-function)))
         (cl-loop for cand in cands collect
                  (let ((suffix (or (funcall ann cand) "")))
-                   (list cand ""
-                         ;; The default completion UI adds the 
`completions-annotations' face
-                         ;; if no other faces are present.
-                         (if (text-property-not-all 0 (length suffix) 'face 
nil suffix)
-                             suffix
-                           (propertize suffix 'face 
'completions-annotations)))))
+                   ;; The default completion UI adds the 
`completions-annotations' face
+                   ;; if no other faces are present.
+                   (unless (text-property-not-all 0 (length suffix) 'face nil 
suffix)
+                     (setq suffix (propertize suffix 'face 
'completions-annotations)))
+                   (list cand "" suffix)))
       (cl-loop for cand in cands collect (list cand "" "")))))
 
 (defun vertico--move-to-front (elem list)



reply via email to

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