Function: nnheader-remove-body
nnheader-remove-body is a byte-compiled function defined in
nnheader.el.gz.
Signature
(nnheader-remove-body)
Documentation
Remove the body from an article in this current buffer.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/nnheader.el.gz
(defun nnheader-remove-body ()
"Remove the body from an article in this current buffer."
(goto-char (point-min))
(when (re-search-forward "\n\r?\n" nil t)
(delete-region (point) (point-max))))