(gnus-registry-hashtb): create the registry
authorTeodor Zlatanov <tzz@lifelogs.com>
Fri, 29 Oct 2004 19:13:32 +0000 (19:13 +0000)
committerTeodor Zlatanov <tzz@lifelogs.com>
Fri, 29 Oct 2004 19:13:32 +0000 (19:13 +0000)
when package is loaded

lisp/ChangeLog
lisp/gnus-registry.el

index 40615e0..7075198 100644 (file)
@@ -1,5 +1,8 @@
 2004-10-29  Teodor Zlatanov  <tzz@lifelogs.com>
 
+       * gnus-registry.el (gnus-registry-hashtb): create the registry
+       when package is loaded
+
        * spam.el (spam-summary-score-preferred-header): global preference
        for people who want to override the default SpamAssassin over
        Bogofilter preference (when both are set)
index 314fbc6..d621343 100644 (file)
@@ -68,7 +68,9 @@
   "The Gnus registry."
   :group 'gnus)
 
-(defvar gnus-registry-hashtb nil
+(defvar gnus-registry-hashtb (make-hash-table                      
+                             :size 256
+                             :test 'equal)
   "*The article registry by Message ID.")
 
 (defcustom gnus-registry-unfollowed-groups '("delayed" "drafts" "queue")