Function: spam-stat-make-entry
spam-stat-make-entry is a byte-compiled function defined in
spam-stat.el.gz.
Signature
(spam-stat-make-entry GOOD BAD)
Documentation
Return a vector with the given properties.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/spam-stat.el.gz
(defsubst spam-stat-make-entry (good bad)
"Return a vector with the given properties."
(let ((entry (vector good bad nil)))
(spam-stat-set-score entry (spam-stat-compute-score entry))
entry))