emacs: Adjust comment to avoid confusing font-lock.

Comments with an open bracket in the first column confuse `font-lock'
mode, so avoid them.
This commit is contained in:
David Edmondson 2010-05-19 08:03:30 +01:00 committed by Carl Worth
parent fc37771a71
commit f2525ed18f

View file

@ -583,10 +583,10 @@ This function advances the next thread when finished."
"Tag/face mapping for line highlighting in notmuch-search. "Tag/face mapping for line highlighting in notmuch-search.
Here is an example of how to color search results based on tags. Here is an example of how to color search results based on tags.
(the following text would be placed in your ~/.emacs file): (the following text would be placed in your ~/.emacs file):
(setq notmuch-search-line-faces '((\"delete\" . '(:foreground \"red\")) (setq notmuch-search-line-faces '((\"delete\" . '(:foreground \"red\"))
(\"unread\" . '(:foreground \"green\")))) (\"unread\" . '(:foreground \"green\"))))
Order matters: for lines with multiple tags, the the first Order matters: for lines with multiple tags, the the first
matching will be applied." matching will be applied."