branch: externals/rich-minority
commit c0960fd2cad6c58176767077ab569af062b11ed5
Author: Artur Malabarba <[email protected]>
Commit: Artur Malabarba <[email protected]>

    Fix blacklist feature broken by the previous commit
---
 rich-minority.el | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/rich-minority.el b/rich-minority.el
index 01a8099..6d690be 100644
--- a/rich-minority.el
+++ b/rich-minority.el
@@ -197,8 +197,9 @@ if the mode line string is empty."
                                (format "   %s (%S)" (car pair) (cdr pair)))
                              full-list "\n")
                   rm--help-echo-bottom))
-    (mapcar (lambda (pair) (rm--propertize (car pair)))
-            (rm--remove-hidden-modes full-list))))
+    (mapcar #'rm--propertize
+            (rm--remove-hidden-modes
+             (mapcar #'car full-list)))))
 
 (defcustom rm-base-text-properties
   '('help-echo 'rm--help-echo

Reply via email to