diff options
| author | Eric Abrahamsen | 2019-03-28 15:39:53 -0700 |
|---|---|---|
| committer | Eric Abrahamsen | 2019-03-28 15:39:53 -0700 |
| commit | dd30154e27b1085939abf144daaf257ebda0c3d6 (patch) | |
| tree | 79984c6f9330284d4b51e49dda53d1b9624c2092 | |
| parent | 2da9f8bf4222fda504f43b4757e154999cdbbf2c (diff) | |
| download | emacs-dd30154e27b1085939abf144daaf257ebda0c3d6.tar.gz emacs-dd30154e27b1085939abf144daaf257ebda0c3d6.zip | |
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.
| -rw-r--r-- | lisp/gnus/gnus-group.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/gnus/gnus-group.el b/lisp/gnus/gnus-group.el index 8c2411f4d92..bd24c3f8dab 100644 --- a/lisp/gnus/gnus-group.el +++ b/lisp/gnus/gnus-group.el | |||
| @@ -2283,7 +2283,8 @@ Return the name of the group if selection was successful." | |||
| 2283 | (nnheader-init-server-buffer) | 2283 | (nnheader-init-server-buffer) |
| 2284 | ;; Necessary because of funky inlining. | 2284 | ;; Necessary because of funky inlining. |
| 2285 | (require 'gnus-cache) | 2285 | (require 'gnus-cache) |
| 2286 | (setq gnus-newsrc-hashtb (gnus-make-hashtable 100))) | 2286 | (setq gnus-newsrc-hashtb (gnus-make-hashtable 100) |
| 2287 | gnus-active-hashtb (gnus-make-hashtable 100))) | ||
| 2287 | ;; Transform the select method into a unique server. | 2288 | ;; Transform the select method into a unique server. |
| 2288 | (when (stringp method) | 2289 | (when (stringp method) |
| 2289 | (setq method (gnus-server-to-method method))) | 2290 | (setq method (gnus-server-to-method method))) |