mu4e-view: fix misplaced bracket

Fixes #2416.
This commit is contained in:
Dirk-Jan C. Binnema 2023-01-16 22:19:57 +02:00
parent 22b2d44b96
commit 72a9ee9d4b
1 changed files with 2 additions and 2 deletions

View File

@ -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))