+2004-01-20 Jesper Harder <harder@ifa.au.dk>
+
+ * spam-stat.el (spam-stat-to-hash-table): Use :size argument in
+ make-hash-table.
+
2004-01-19 Katsumi Yamaoka <yamaoka@jpl.org>
* canlock.el (base64-encode-string): Don't autoload it.
NBAD is the number of bad mails it has appeared in, GOOD is the number
of times it appeared in good mails, and BAD is the number of times it
has appeared in bad mails."
- (let ((table (make-hash-table :test 'equal)))
+ (let ((table (make-hash-table :size (length entries)
+ :test 'equal)))
(mapc (lambda (l)
(puthash (car l)
(spam-stat-make-entry (nth 1 l) (nth 2 l))