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:
Dmitry Kurochkin 2011-12-24 00:40:34 +04:00 committed by David Bremner
parent c0d694035d
commit c44a0edadc

View file

@ -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. Here is an example of how to color search results based on tags.
(the following text would be placed in your ~/.emacs file): (the following text would be placed in your ~/.emacs file):
(setq notmuch-search-line-faces '((\"delete\" . '(:foreground \"red\" (setq notmuch-search-line-faces '((\"delete\" . (:foreground \"red\"
:background \"blue\")) :background \"blue\"))
(\"unread\" . '(:foreground \"green\")))) (\"unread\" . (:foreground \"green\"))))
The attributes defined for matching tags are merged, with later The attributes defined for matching tags are merged, with later
attributes overriding earlier. A message having both \"delete\" attributes overriding earlier. A message having both \"delete\"