Quote '@' symbols in @code section

This commit is contained in:
Yuri D'Elia 2019-04-18 16:16:16 +02:00
parent 2ec1b46076
commit 8eb0c2eb49
1 changed files with 3 additions and 3 deletions

View File

@ -2668,16 +2668,16 @@ A short example for two contexts:
(smtpmail-smtp-service . 587)))) (smtpmail-smtp-service . 587))))
(make-mu4e-context-account (make-mu4e-context-account
:name "personal" :name "personal"
:user-mail-address "john@doe.xyz" :user-mail-address "john@@doe.xyz"
:sent-folder "Sent" :sent-folder "Sent"
:vars gandi-smtp-vars) :vars gandi-smtp-vars)
(make-mu4e-context-account (make-mu4e-context-account
:name "work" :name "work"
:user-mail-address "john@work.org" :user-mail-address "john@@work.org"
:sent-folder "Sent" :sent-folder "Sent"
:predicate (lambda (msg) :predicate (lambda (msg)
(mu4e-message-contact-field-matches (mu4e-message-contact-field-matches
msg '(:from :to) "boss@work.org")) msg '(:from :to) "boss@@work.org"))
:vars gandi-smtp-vars)) :vars gandi-smtp-vars))
@end lisp @end lisp