Function: gnus-thread-header
gnus-thread-header is a byte-compiled function defined in
gnus-sum.el.gz.
Signature
(gnus-thread-header THREAD)
Documentation
Return header of first article in THREAD.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defsubst gnus-thread-header (thread)
"Return header of first article in THREAD."
(if (consp thread)
(car (if (stringp (car thread))
(cadr thread)
thread))
thread))