Function: mail-header-chars

mail-header-chars is a byte-compiled function defined in nnheader.el.gz.

Signature

(mail-header-chars mail-header-chars X)

Documentation

Access slot "chars" of mail-header struct X.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/nnheader.el.gz
(defalias 'mail-header-p #'vectorp)     ;For lack of tag, it's all we have.
(cl-defstruct (mail-header
               (:type vector)
               (:constructor nil)
               (:constructor make-full-mail-header
                (&optional number subject from date id
			   references chars lines xref
			   extra)))
  number
  subject
  from
  date
  id
  references
  chars
  lines
  xref
  extra)