diff options
Diffstat (limited to 'lisp/gnus/spam.el')
-rw-r--r-- | lisp/gnus/spam.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/gnus/spam.el b/lisp/gnus/spam.el index c701e314fc0..83df2f6198f 100644 --- a/lisp/gnus/spam.el +++ b/lisp/gnus/spam.el @@ -831,8 +831,8 @@ backend is STATISTICAL." (defun spam-backend-list (&optional type) "Return a list of all the backend symbols, constrained by TYPE. -When TYPE is 'non-mover, only non-mover backends are returned. -When TYPE is 'mover, only mover backends are returned." +When TYPE is `non-mover', only non-mover backends are returned. +When TYPE is `mover', only mover backends are returned." (let (list) (dolist (backend spam-backends) (when (or @@ -882,8 +882,8 @@ that the message is definitely a spam." (defun spam-backend-function (backend classification type) "Get the BACKEND function for CLASSIFICATION and TYPE. -TYPE is 'registration or 'unregistration. -CLASSIFICATION is 'ham or 'spam." +TYPE is `registration' or `unregistration'. +CLASSIFICATION is `ham' or `spam'." (if (and (spam-classification-valid-p classification) (spam-backend-function-type-valid-p type)) @@ -1520,7 +1520,7 @@ In the case of mover backends, checks the setting of (defun spam-fetch-field-fast (article field &optional prepared-data-header) "Fetch a FIELD for ARTICLE with the internal `gnus-data-find' function. When PREPARED-DATA-HEADER is given, don't look in the Gnus data. -When FIELD is 'number, ARTICLE can be any number (since we want +When FIELD is `number', ARTICLE can be any number (since we want to find it out)." (when (numberp article) (let* ((data-header (or prepared-data-header |