Function: rmail-mime-display-body

rmail-mime-display-body is a byte-compiled function defined in rmailmm.el.gz.

Signature

(rmail-mime-display-body rmail-mime-display-body X)

Documentation

Access slot "body" of rmail-mime-display struct X.

Source Code

;; Defined in /usr/src/emacs/lisp/mail/rmailmm.el.gz
;; Display options returned by rmail-mime-entity-display.
;; Value is on of nil, t, raw.
(cl-defstruct (rmail-mime-display
               (:copier rmail-mime--copy-display) (:constructor nil)
               (:constructor rmail-mime--make-display (header tagline body)
                "Make an object describing how to display.
Each field's value is a symbol for the corresponding
item with these values:
  nil: not displayed
  t:   displayed by the decoded presentation form
  raw: displayed by the raw MIME data (for the header and body only)."))
  header tagline body)