From e1c6fa4b95fc86306776306808e47a751bbb1ec7 Mon Sep 17 00:00:00 2001 From: djcb Date: Sun, 10 Dec 2017 13:52:11 +0200 Subject: [PATCH] mu4e: fix typo in mu4e~docid-msgid-param Fix silly typo. Fixes #1166. --- mu4e/mu4e-proc.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mu4e/mu4e-proc.el b/mu4e/mu4e-proc.el index b0f6a97e..69dd796c 100644 --- a/mu4e/mu4e-proc.el +++ b/mu4e/mu4e-proc.el @@ -314,7 +314,7 @@ Start the process if needed." "Construct a backend parameter based on DOCID-OR-MSGID." (format (if (stringp docid-or-msgid) - (concat "msgid:"(mu4e~escape (format "%s" msgid))) + (concat "msgid:"(mu4e~escape (format "%s" docid-or-msgid))) "docid:%d") docid-or-msgid))