diff options
| author | Dirk-Jan C. Binnema <djcb@djcbsoftware.nl> | 2019-04-18 22:06:26 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-04-18 22:06:26 +0300 |
| commit | d7b21f1d8b0fb94ea754a5a2d68e44d3c970e37b (patch) | |
| tree | e202e6fa78a2ca51ddb5dee51005dde8efdca03b /mu4e | |
| parent | 2ec1b460768340b5c34ef5d08ca5bae8696bd941 (diff) | |
| parent | 8eb0c2eb494ac0b70d6924a2cc1a226aa3566962 (diff) | |
Merge pull request #1405 from wavexx/fix_texinfo_errors
Quote '@' symbols in texinfo's @code section
Diffstat (limited to 'mu4e')
| -rw-r--r-- | mu4e/mu4e.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mu4e/mu4e.texi b/mu4e/mu4e.texi index 4115683..f70fd1a 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 |
