Function: gnus-article-treat-fold-newsgroups

gnus-article-treat-fold-newsgroups is an autoloaded, interactive and byte-compiled function defined in gnus-art.el.gz.

Signature

(gnus-article-treat-fold-newsgroups)

Documentation

Fold the Newsgroups and Followup-To message headers.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-art.el.gz
(defun gnus-article-treat-fold-newsgroups ()
  "Fold the Newsgroups and Followup-To message headers."
  (interactive nil gnus-article-mode gnus-summary-mode)
  (gnus-with-article-headers
    (while (gnus-article-goto-header "newsgroups\\|followup-to")
      (save-restriction
	(mail-header-narrow-to-field)
	(while (re-search-forward ", *" nil t)
	  (replace-match ", " t t))
	(mail-header-fold-field)
	(goto-char (point-max))))))