Function: gnus-narrow-to-body

gnus-narrow-to-body is a byte-compiled function defined in gnus.el.gz.

Signature

(gnus-narrow-to-body)

Documentation

Narrow to the body of an article.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus.el.gz
(defun gnus-narrow-to-body ()
  "Narrow to the body of an article."
  (narrow-to-region
   (progn
     (goto-char (point-min))
     (or (search-forward "\n\n" nil t)
	 (point-max)))
   (point-max)))