Function: mh-mime-cleanup
mh-mime-cleanup is an autoloaded and byte-compiled function defined in
mh-mime.el.gz.
Signature
(mh-mime-cleanup)
Documentation
Free the decoded MIME parts.
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-mime.el.gz
;;; MIME Cleanup
;;;###mh-autoload
(defun mh-mime-cleanup ()
"Free the decoded MIME parts."
(let ((mime-data (gethash (current-buffer) mh-globals-hash)))
(remove-images (point-min) (point-max))
(when mime-data
(mm-destroy-parts (mh-mime-handles mime-data))
(remhash (current-buffer) mh-globals-hash))))