Variable: spam-stat

spam-stat is a variable defined in spam-stat.el.gz.

Value

#s(hash-table test equal)

Documentation

Hash table used to store the statistics.

Use spam-stat-load to load the file. Every word is used as a key in this table. The value is a vector. Use spam-stat-ngood, spam-stat-nbad, spam-stat-good, spam-stat-bad, and spam-stat-score to access this vector.

This variable was added, or its default value changed, in Emacs 22.1.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/spam-stat.el.gz
;; Data -- not using defstruct in order to save space and time

(defvar spam-stat (make-hash-table :test 'equal)
  "Hash table used to store the statistics.
Use `spam-stat-load' to load the file.
Every word is used as a key in this table.  The value is a vector.
Use `spam-stat-ngood', `spam-stat-nbad', `spam-stat-good',
`spam-stat-bad', and `spam-stat-score' to access this vector.")