* lisp/gnus/gnus-group.el (gnus-group-goto-group);
Use gnus-active-hashtb in addition to gnus-newsrc-hashtb to check if
a group exists since some kinds of groups are registered in only one
of them (bug#35208).
If TEST-MARKED, the line must be marked."
(when group
(let ((start (point))
- (active (and (gethash group gnus-newsrc-hashtb)
+ (active (and (or
+ ;; some kind of group may be only there.
+ (gethash group gnus-active-hashtb)
+ ;; all groups (but with exception) are there.
+ (gethash group gnus-newsrc-hashtb))
group)))
(beginning-of-line)
(cond