Function: spam-backend-put-article-todo-list
spam-backend-put-article-todo-list is a byte-compiled function defined
in spam.el.gz.
Signature
(spam-backend-put-article-todo-list BACKEND CLASSIFICATION LIST &optional UNREGISTER)
Documentation
Set the LIST of articles to be processed for BACKEND and CLASSIFICATION.
With UNREGISTER, set articles to be unregistered. This is a temporary storage function - nothing here persists.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/spam.el.gz
(defun spam-backend-put-article-todo-list (backend classification list
&optional unregister)
"Set the LIST of articles to be processed for BACKEND and CLASSIFICATION.
With UNREGISTER, set articles to be unregistered.
This is a temporary storage function - nothing here persists."
(put
backend
(intern (spam-backend-article-list-property classification unregister))
list))