Function: spam-backend-article-list-property

spam-backend-article-list-property is a byte-compiled function defined in spam.el.gz.

Signature

(spam-backend-article-list-property CLASSIFICATION &optional UNREGISTER)

Documentation

Property name of article list with CLASSIFICATION and UNREGISTER.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/spam.el.gz
(defun spam-backend-article-list-property (classification
                                           &optional unregister)
  "Property name of article list with CLASSIFICATION and UNREGISTER."
  (let* ((r (if unregister "unregister" "register"))
         (prop (format "%s-%s" classification r)))
    prop))