* lisp/gnus/nnmail.el (nnmail-check-duplication): Fix thinko in
previous patch -- group-art is a list of pairs, not a pair.
;; We need to get the unique Gnus group name for this article
;; -- there may be identically named groups from several
;; backends.
- (push (cons (gnus-group-prefixed-name (car group-art)
- gnus-command-method)
- (cdr group-art))
+ (push (mapcar
+ (lambda (ga)
+ (cons (gnus-group-prefixed-name (car ga) gnus-command-method)
+ (cdr ga)))
+ group-art)
nnmail-split-history)
(delete-region (point-min) (point-max)))))