]> git.notmuchmail.org Git - notmuch/commitdiff
emacs: escape quote in docstring
authorDavid Bremner <david@tethera.net>
Thu, 14 Jun 2018 00:32:37 +0000 (21:32 -0300)
committerDavid Bremner <david@tethera.net>
Sun, 21 Oct 2018 13:30:51 +0000 (10:30 -0300)
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

index 44402f8aa8256b55816b9a256b6b7f7468e54e9d..1f453357e263fba23d517288541140796aaf4f74 100644 (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\"))))