Function: gnus-summary-goto-subjects
gnus-summary-goto-subjects is a byte-compiled function defined in
gnus-sum.el.gz.
Signature
(gnus-summary-goto-subjects ARTICLES)
Documentation
Insert the subject header for ARTICLES in the current buffer.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defun gnus-summary-goto-subjects (articles)
"Insert the subject header for ARTICLES in the current buffer."
(save-excursion
(dolist (article articles)
(gnus-summary-goto-subject article t)))
(gnus-summary-limit (append articles gnus-newsgroup-limit))
(gnus-summary-position-point))