Function: nnselect-run
nnselect-run is a byte-compiled function defined in nnselect.el.gz.
Signature
(nnselect-run SPECS)
Documentation
Apply nnselect-function to nnselect-args from SPECS.
Return an article list.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/nnselect.el.gz
(defun nnselect-run (specs)
"Apply nnselect-function to nnselect-args from SPECS.
Return an article list."
(let ((func (alist-get 'nnselect-function specs))
(args (alist-get 'nnselect-args specs)))
(condition-case-unless-debug err
(funcall func args)
(error (gnus-error 3 "nnselect-run: %s on %s gave error %s" func args err)
[]))))