Function: mm-destroy-part

mm-destroy-part is a byte-compiled function defined in mm-decode.el.gz.

Signature

(mm-destroy-part HANDLE)

Documentation

Destroy the data structures connected to HANDLE.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/mm-decode.el.gz
(defun mm-destroy-part (handle)
  "Destroy the data structures connected to HANDLE."
  (when (listp handle)
    (mm-remove-part handle)
    (when (buffer-live-p (mm-handle-buffer handle))
      (kill-buffer (mm-handle-buffer handle)))))