Function: gnus-with-article-headers

gnus-with-article-headers is a macro defined in gnus-art.el.gz.

Signature

(gnus-with-article-headers &rest FORMS)

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-art.el.gz
;;; Macros for dealing with the article buffer.

(defmacro gnus-with-article-headers (&rest forms)
  (declare (indent 0) (debug t))
  `(with-current-buffer gnus-article-buffer
     (save-restriction
       (let ((inhibit-read-only t)
	     (inhibit-point-motion-hooks t)
	     (case-fold-search t))
	 (article-narrow-to-head)
	 ,@forms))))