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
      ("/nix/store/yvwy8dm26cpa1j12ixgs1dyiaw2abdk9-emacs-snapshot/share/emacs/31.0.50/lisp/gnus/gnus-sum.elc"
       . 47214)]

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)