From 8eb0c2eb494ac0b70d6924a2cc1a226aa3566962 Mon Sep 17 00:00:00 2001 From: Yuri D'Elia Date: Thu, 18 Apr 2019 16:16:16 +0200 Subject: [PATCH] Quote '@' symbols in @code section --- mu4e/mu4e.texi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mu4e/mu4e.texi b/mu4e/mu4e.texi index 4115683d..f70fd1a9 100644 --- a/mu4e/mu4e.texi +++ b/mu4e/mu4e.texi @@ -2668,16 +2668,16 @@ A short example for two contexts: (smtpmail-smtp-service . 587)))) (make-mu4e-context-account :name "personal" - :user-mail-address "john@doe.xyz" + :user-mail-address "john@@doe.xyz" :sent-folder "Sent" :vars gandi-smtp-vars) (make-mu4e-context-account :name "work" - :user-mail-address "john@work.org" + :user-mail-address "john@@work.org" :sent-folder "Sent" :predicate (lambda (msg) (mu4e-message-contact-field-matches - msg '(:from :to) "boss@work.org")) + msg '(:from :to) "boss@@work.org")) :vars gandi-smtp-vars)) @end lisp