From 72a9ee9d4b90e0b56e039d85a20d70bd2b0b3913 Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Mon, 16 Jan 2023 22:19:57 +0200 Subject: [PATCH] mu4e-view: fix misplaced bracket Fixes #2416. --- mu4e/mu4e-view.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mu4e/mu4e-view.el b/mu4e/mu4e-view.el index 1e94ccab..9286da9b 100644 --- a/mu4e/mu4e-view.el +++ b/mu4e/mu4e-view.el @@ -1069,8 +1069,8 @@ The alist uniquely maps the number to the gnus-part." (while (not (eobp)) (let ((part (get-text-property (point) 'gnus-data)) (index (get-text-property (point) 'gnus-part))) - (when (and part (numberp index) (not (assoc index parts)) - (push `(,index . ,part) parts))) + (when (and part (numberp index) (not (assoc index parts))) + (push `(,index . ,part) parts)) (goto-char (or (next-single-property-change (point) 'gnus-part) (point-max)))))) parts))