Function: gnus-registry-fetch-message-id-fast
gnus-registry-fetch-message-id-fast is a byte-compiled function
defined in gnus-registry.el.gz.
Signature
(gnus-registry-fetch-message-id-fast ARTICLE)
Documentation
Fetch the Message-ID quickly, using the internal gnus-data-find function.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-registry.el.gz
;; message field fetchers
(defun gnus-registry-fetch-message-id-fast (article)
"Fetch the Message-ID quickly, using the internal `gnus-data-find' function."
(when-let* ((data (and (numberp article) (gnus-data-find article))))
(mail-header-id (gnus-data-header data))))