Variable: gnus-alter-articles-to-read-function
gnus-alter-articles-to-read-function is a customizable variable
defined in gnus-sum.el.gz.
Value
#[514 "\207"
[]
3 "\n\n(fn GROUP ARTICLE-LIST)"]
Documentation
Function to be called to alter the list of articles to be selected.
This option defaults to a lambda form that simply returns the
list of articles unchanged. Use add-function to set one or
more custom filter functions.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defcustom gnus-alter-articles-to-read-function
(lambda (_group article-list) article-list)
"Function to be called to alter the list of articles to be selected.
This option defaults to a lambda form that simply returns the
list of articles unchanged. Use `add-function' to set one or
more custom filter functions."
:type 'function
:group 'gnus-summary)