From ae7f649a4abb48a50a08b16321a2ced39777b70e Mon Sep 17 00:00:00 2001 From: djcb Date: Sat, 27 Aug 2016 18:58:55 +0300 Subject: [PATCH] mu4e: avoid error return to same message This avoids a runtime error. Fix by holtzermann17 for Issue #910. --- mu4e/mu4e-headers.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mu4e/mu4e-headers.el b/mu4e/mu4e-headers.el index e137c023..32362351 100644 --- a/mu4e/mu4e-headers.el +++ b/mu4e/mu4e-headers.el @@ -1529,7 +1529,7 @@ window. " "Rerun the search for the last search expression." (interactive) ;; if possible, try to return to the same message - (let* ((msg (mu4e-message-at-point)) + (let* ((msg (mu4e-message-at-point t)) (msgid (and msg (mu4e-message-field msg :message-id)))) (mu4e-headers-search mu4e~headers-last-query nil nil t msgid)))