Function: spam-widening-needed-p

spam-widening-needed-p is a byte-compiled function defined in spam.el.gz.

Signature

(spam-widening-needed-p &optional FORCE-SYMBOLS)

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/spam.el.gz
(defun spam-widening-needed-p (&optional force-symbols)
  (let (found)
    (dolist (backend (spam-backend-list))
      (when (and (spam-backend-statistical-p backend)
                 (or (symbol-value backend)
                     (memq backend force-symbols)))
        (setq found backend)))
    found))