mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 02:48:08 +01:00
emacs: fix docstring for `notmuch-search-line-faces'.
Examples in documentation for `notmuch-search-line-faces' had an extra quote, e.g.: '(\"unread\" . '(:foreground \"green\")) Which resulted in values like: (\"unread\" quote (:foreground \"green\")) And tons of "Invalid face reference: quote" errors in the messages buffer.
This commit is contained in:
parent
c0d694035d
commit
c44a0edadc
1 changed files with 3 additions and 3 deletions
|
@ -646,9 +646,9 @@ This function advances the next thread when finished."
|
|||
Here is an example of how to color search results based on tags.
|
||||
(the following text would be placed in your ~/.emacs file):
|
||||
|
||||
(setq notmuch-search-line-faces '((\"delete\" . '(:foreground \"red\"
|
||||
:background \"blue\"))
|
||||
(\"unread\" . '(:foreground \"green\"))))
|
||||
(setq notmuch-search-line-faces '((\"delete\" . (:foreground \"red\"
|
||||
:background \"blue\"))
|
||||
(\"unread\" . (:foreground \"green\"))))
|
||||
|
||||
The attributes defined for matching tags are merged, with later
|
||||
attributes overriding earlier. A message having both \"delete\"
|
||||
|
|
Loading…
Reference in a new issue