* mu4e: s/mu4e-contact-field-matches/mu4e-message-contact-field-matches/ in mu4e.texi

This commit is contained in:
djcb 2012-10-27 14:38:39 +03:00
parent 412de6f4aa
commit 433ac90c50
1 changed files with 2 additions and 2 deletions

View File

@ -1355,9 +1355,9 @@ Let's look at some examples. First, suppose we want to set the
(let ((msg mu4e-compose-parent-message) ;; msg is shorter...
(setq user-mail-address
(cond
((mu4e-contact-field-matches msg :to "me@@foo.com")
((mu4e-message-contact-field-matches msg :to "me@@foo.com")
"me@@foo.com")
((mu4e-contact-field-matches msg :to "me@@bar.com")
((mu4e-message-contact-field-matches msg :to "me@@bar.com")
"me@@bar.com")
(t "me@@cuux.com")))))))
@end lisp