gnus-group.el (gnus-group-completing-read): Fix last change.

This commit is contained in:
Katsumi Yamaoka 2010-10-06 01:38:26 +00:00
parent 61c47336fe
commit c640fcd152

View file

@ -2190,7 +2190,9 @@ if it is not a list."
require-match initial-input
(or hist 'gnus-group-history)
def))
(if (symbol-value (intern-soft group collection))
(if (if (listp collection)
(member group (mapcar 'symbol-name collection))
(symbol-value (intern-soft group collection)))
group
(mm-encode-coding-string group (gnus-group-name-charset nil group)))))