Function: mm-display-parts

mm-display-parts is a byte-compiled function defined in mm-decode.el.gz.

Signature

(mm-display-parts HANDLE)

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/mm-decode.el.gz
(defun mm-display-parts (handle)
  (cond
   ((stringp (car handle)) (mapcar #'mm-display-parts (cdr handle)))
   ((bufferp (car handle))
    (save-restriction
      (narrow-to-region (point) (point))
      (mm-display-part handle)
      (goto-char (point-max))))
   (t
    (mapcar #'mm-display-parts handle))))