From 74691afde8a2502648bb749e3411cd6ced69ba0f Mon Sep 17 00:00:00 2001 From: djcb Date: Tue, 23 Feb 2016 23:25:18 +0200 Subject: [PATCH] mu4e: update org-mode support mu4e-view-message-with-message-id is the new name for mu4e-view-message-with-msgid. --- mu4e/org-mu4e.el | 2 +- mu4e/org-old-mu4e.el | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mu4e/org-mu4e.el b/mu4e/org-mu4e.el index 3a14eb1c..b9e96882 100644 --- a/mu4e/org-mu4e.el +++ b/mu4e/org-mu4e.el @@ -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)))) diff --git a/mu4e/org-old-mu4e.el b/mu4e/org-old-mu4e.el index 845d2393..d73a7806 100644 --- a/mu4e/org-old-mu4e.el +++ b/mu4e/org-old-mu4e.el @@ -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))))