Initiate gnus-active-hashtb before making ephemeral group

* lisp/gnus/gnus-group.el (gnus-group-read-ephemeral-group): Needs to
  be a hash table, not nil.
This commit is contained in:
Eric Abrahamsen 2019-03-28 15:39:53 -07:00
parent 2da9f8bf42
commit dd30154e27

View file

@ -2283,7 +2283,8 @@ Return the name of the group if selection was successful."
(nnheader-init-server-buffer)
;; Necessary because of funky inlining.
(require 'gnus-cache)
(setq gnus-newsrc-hashtb (gnus-make-hashtable 100)))
(setq gnus-newsrc-hashtb (gnus-make-hashtable 100)
gnus-active-hashtb (gnus-make-hashtable 100)))
;; Transform the select method into a unique server.
(when (stringp method)
(setq method (gnus-server-to-method method)))