From c89b0add51305e83c822c08f1026e7d1278eec74 Mon Sep 17 00:00:00 2001 From: Eric Abrahamsen Date: Thu, 16 May 2019 12:47:18 -0700 Subject: [PATCH] Fix stray call to make-vector * lisp/gnus/gnus-agent.el (gnus-agent-fetch-group-1): This is meant to be a hash table. --- lisp/gnus/gnus-agent.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/gnus/gnus-agent.el b/lisp/gnus/gnus-agent.el index 9f7d2c9df7d..d6d2457dd98 100644 --- a/lisp/gnus/gnus-agent.el +++ b/lisp/gnus/gnus-agent.el @@ -2439,7 +2439,7 @@ modified) original contents, they are first saved to their own file." ;; Parse them and see which articles we want to fetch. (setq gnus-newsgroup-dependencies (or gnus-newsgroup-dependencies - (make-vector (length articles) 0))) + (gnus-make-hashtable (length articles)))) (setq gnus-newsgroup-headers (or gnus-newsgroup-headers (gnus-get-newsgroup-headers-xover articles nil nil -- 2.39.5