Function: gnus-mime-view-all-parts
gnus-mime-view-all-parts is an autoloaded, interactive and
byte-compiled function defined in gnus-art.el.gz.
Signature
(gnus-mime-view-all-parts &optional HANDLES)
Documentation
View all the MIME parts.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-art.el.gz
(defun gnus-mime-view-all-parts (&optional handles)
"View all the MIME parts."
(interactive nil gnus-article-mode)
(with-current-buffer gnus-article-buffer
(let ((handles (or handles gnus-article-mime-handles))
(mail-parse-charset gnus-newsgroup-charset)
(mail-parse-ignored-charsets
(with-current-buffer gnus-summary-buffer
gnus-newsgroup-ignored-charsets)))
(when handles
(mm-remove-parts handles)
(goto-char (point-min))
(or (search-forward "\n\n") (goto-char (point-max)))
(let ((inhibit-read-only t))
(delete-region (point) (point-max))
(gnus-bind-mm-vars (mm-display-parts handles)))))))