Function: gnus-id-to-article

gnus-id-to-article is a byte-compiled function defined in gnus-sum.el.gz.

Signature

(gnus-id-to-article ID)

Documentation

Return the article number of ID.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defun gnus-id-to-article (id)
  "Return the article number of ID."
  (let ((thread (gnus-id-to-thread id)))
    (when (and thread
	       (car thread))
      (mail-header-number (car thread)))))