From: David Bremner Date: Thu, 14 Jun 2018 00:32:37 +0000 (-0300) Subject: emacs: escape quote in docstring X-Git-Tag: archive/debian/0.29_rc0-1~158 X-Git-Url: https://git.notmuchmail.org/git?a=commitdiff_plain;ds=sidebyside;h=7f726c6e87517eb9c84119a1c5e3a63bfaaa49f6;hp=5e98bdc3be3f2e685ba37c7a2fc1fd9f56c0f10a;p=notmuch 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). --- 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\"))))