Function: gnus-dup-open
gnus-dup-open is a byte-compiled function defined in gnus-dup.el.gz.
Signature
(gnus-dup-open)
Documentation
Possibly read the duplicate suppression list and start the subsystem.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-dup.el.gz
(defun gnus-dup-open ()
"Possibly read the duplicate suppression list and start the subsystem."
(if gnus-save-duplicate-list
(gnus-dup-read)
(setq gnus-dup-list nil))
(setq gnus-dup-hashtb (gnus-make-hashtable))
;; Enter all Message-IDs into the hash table.
(dolist (g gnus-dup-list)
(puthash g t gnus-dup-hashtb)))