diff options
| author | David Bremner <david@tethera.net> | 2018-06-13 21:32:37 -0300 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2018-10-21 10:30:51 -0300 |
| commit | 7f726c6e87517eb9c84119a1c5e3a63bfaaa49f6 (patch) | |
| tree | 4f5deb8b71a47169fcc7a4558faf553fdd0724b4 | |
| parent | 5e98bdc3be3f2e685ba37c7a2fc1fd9f56c0f10a (diff) | |
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).
| -rw-r--r-- | emacs/notmuch.el | 2 |
1 files changed, 1 insertions, 1 deletions
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\")))) |
