mu4e: update org-mode support

mu4e-view-message-with-message-id is the new name for
mu4e-view-message-with-msgid.
This commit is contained in:
djcb 2016-02-23 23:25:18 +02:00
parent 7ac4921902
commit 74691afde8
2 changed files with 2 additions and 2 deletions

View File

@ -125,7 +125,7 @@ Example usage:
the query (for paths starting with 'query:')."
(cond
((string-match "^msgid:\\(.+\\)" path)
(mu4e-view-message-with-msgid (match-string 1 path)))
(mu4e-view-message-with-message-id (match-string 1 path)))
((string-match "^query:\\(.+\\)" path)
(mu4e-headers-search (match-string 1 path) current-prefix-arg))
(t (mu4e-error "mu4e: unrecognized link type '%s'" path))))

View File

@ -95,7 +95,7 @@ the query (for paths starting with 'query:')."
(require 'mu4e)
(cond
((string-match "^msgid:\\(.+\\)" path)
(mu4e-view-message-with-msgid (match-string 1 path)))
(mu4e-view-message-with-message-id (match-string 1 path)))
((string-match "^query:\\(.+\\)" path)
(mu4e-headers-search (match-string 1 path) current-prefix-arg))
(t (mu4e-error "mu4e: unrecognized link type '%s'" path))))