mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
emacs: implement notmuch-search-color-line with dolist.
While passing a lambda to mapc is idiomatic elisp, dolist is easier to understand, and there are a few other calls to it in this file.
This commit is contained in:
parent
7b7960ea22
commit
3856286e21
1 changed files with 6 additions and 7 deletions
|
@ -695,13 +695,12 @@ background."
|
|||
|
||||
(defun notmuch-search-color-line (start end line-tag-list)
|
||||
"Colorize lines in `notmuch-show' based on tags."
|
||||
(mapc (lambda (elem)
|
||||
(let ((tag (car elem))
|
||||
(attributes (cdr elem)))
|
||||
(when (member tag line-tag-list)
|
||||
(notmuch-apply-face nil attributes nil start end))))
|
||||
;; Reverse the list so earlier entries take precedence
|
||||
(reverse notmuch-search-line-faces)))
|
||||
;; Reverse the list so earlier entries take precedence
|
||||
(dolist (elem (reverse notmuch-search-line-faces))
|
||||
(let ((tag (car elem))
|
||||
(face (cdr elem)))
|
||||
(when (member tag line-tag-list)
|
||||
(notmuch-apply-face nil face nil start end)))))
|
||||
|
||||
(defun notmuch-search-author-propertize (authors)
|
||||
"Split `authors' into matching and non-matching authors and
|
||||
|
|
Loading…
Reference in a new issue