Function: gnus-fetch-field
gnus-fetch-field is a byte-compiled function defined in
gnus-util.el.gz.
Signature
(gnus-fetch-field FIELD)
Documentation
Return the value of the header FIELD of current article.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-util.el.gz
(defun gnus-fetch-field (field)
"Return the value of the header FIELD of current article."
(require 'message)
(save-excursion
(save-restriction
(let ((inhibit-point-motion-hooks t))
(nnheader-narrow-to-headers)
(message-fetch-field field)))))