Function: gnus-summary-search-forward
gnus-summary-search-forward is a byte-compiled function defined in
gnus-sum.el.gz.
Signature
(gnus-summary-search-forward &optional UNREAD SUBJECT BACKWARD)
Documentation
Search forward for an article.
If UNREAD, look for unread articles. If SUBJECT, look for articles with that subject. If BACKWARD, search backward instead.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defun gnus-summary-search-forward (&optional unread subject backward)
"Search forward for an article.
If UNREAD, look for unread articles. If SUBJECT, look for
articles with that subject. If BACKWARD, search backward instead."
(cond (subject (gnus-summary-find-subject subject unread backward))
(backward (gnus-summary-find-prev unread))
(t (gnus-summary-find-next unread))))