mu4e: fix quotes in some docstrings

Escape correctly.
This commit is contained in:
Dirk-Jan C. Binnema 2023-02-13 22:28:00 +02:00
parent e4cf881c91
commit d55cba7237
4 changed files with 4 additions and 4 deletions

View File

@ -100,7 +100,7 @@ symbols, for example:
(setq mu4e-sent-messages-behavior (lambda ()
(if (string= (message-sendmail-envelope-from) \"foo@example.com\")
\='delete \='sent)))
\\='delete \\='sent)))
The various `message-' functions from `message-mode' are available
for querying the message information."

View File

@ -361,7 +361,7 @@ Otherwise, do nothing."
(defun mu4e--main-view ()
"(Re)create the mu4e main-view, and switch to it.
If `mu4e-split-view' equals \='single-window, show a mu4e menu
If `mu4e-split-view' equals \\='single-window, show a mu4e menu
instead."
(if (eq mu4e-split-view 'single-window)
(mu4e--main-menu)

View File

@ -52,7 +52,7 @@ Example usage:
\"No date\")))
(concat subject \" \" date)))
(setq org-mu4e-link-desc-func \='my-link-descr)"
(setq org-mu4e-link-desc-func \\='my-link-descr)"
:type '(function)
:group 'mu4e-org)

View File

@ -89,7 +89,7 @@ Example that hides all trashed messages:
(setq mu4e-search-hide-predicate
(lambda (msg)
(member \='trashed (mu4e-message-field msg :flags)))).")
(member \\='trashed (mu4e-message-field msg :flags)))).")
(defvar mu4e-search-hide-enabled t
"Whether `mu4e-search-hide-predicate' should be active.