Function: gnus-cache-write-active
gnus-cache-write-active is an autoloaded and byte-compiled function
defined in gnus-cache.el.gz.
Signature
(gnus-cache-write-active &optional FORCE)
Documentation
Write the active hashtb to the active file.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-cache.el.gz
(defun gnus-cache-write-active (&optional force)
"Write the active hashtb to the active file."
(when (or force
(and gnus-cache-active-hashtb
gnus-cache-active-altered))
(gnus-write-active-file gnus-cache-active-file gnus-cache-active-hashtb t)
;; Mark the active hashtb as unaltered.
(setq gnus-cache-active-altered nil)))