Function: rmail-mime--make-display

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

Signature

(rmail-mime--make-display HEADER TAGLINE BODY)

Documentation

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).

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)