emacs: escape quote in docstring

This prevents emacs from turning it into a fancy, non-evaluable
docstring (and also makes it easier to deal with during extraction to
sphinx).
This commit is contained in:
David Bremner 2018-06-13 21:32:37 -03:00
parent 5e98bdc3be
commit 7f726c6e87

View file

@ -711,7 +711,7 @@ A thread with TAG will have FACE applied.
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 '((\"unread\" . (:foreground \"green\"))
(setq notmuch-search-line-faces \\='((\"unread\" . (:foreground \"green\"))
(\"deleted\" . (:foreground \"red\"
:background \"blue\"))))