Function: nntp-request-head
nntp-request-head is a byte-compiled function defined in nntp.el.gz.
Signature
(nntp-request-head ARTICLE &optional GROUP SERVER)
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/nntp.el.gz
(deffoo nntp-request-head (article &optional group server)
(nntp-with-open-group
group server
(when (nntp-send-command
"\r?\n\\.\r?\n" "HEAD"
(if (numberp article) (int-to-string article) article))
(prog1
(nntp-find-group-and-number group)
(nntp-decode-text)))))