From 7f726c6e87517eb9c84119a1c5e3a63bfaaa49f6 Mon Sep 17 00:00:00 2001 From: David Bremner Date: Wed, 13 Jun 2018 21:32:37 -0300 Subject: [PATCH] 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). --- emacs/notmuch.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emacs/notmuch.el b/emacs/notmuch.el index 44402f8a..1f453357 100644 --- a/emacs/notmuch.el +++ b/emacs/notmuch.el @@ -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\")))) -- 2.43.0