emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master c89b0ad: Fix stray call to make-vector


From: Eric Abrahamsen
Subject: [Emacs-diffs] master c89b0ad: Fix stray call to make-vector
Date: Thu, 16 May 2019 15:47:43 -0400 (EDT)

branch: master
commit c89b0add51305e83c822c08f1026e7d1278eec74
Author: Eric Abrahamsen <address@hidden>
Commit: Eric Abrahamsen <address@hidden>

    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 9f7d2c9..d6d2457 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]