Function: gnus-mime-pipe-part

gnus-mime-pipe-part is an interactive and byte-compiled function defined in gnus-art.el.gz.

Signature

(gnus-mime-pipe-part &optional CMD EVENT)

Documentation

Pipe the MIME part under point to a process.

Use CMD as the process.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-art.el.gz
(defun gnus-mime-pipe-part (&optional cmd event)
  "Pipe the MIME part under point to a process.
Use CMD as the process."
  (interactive (list nil last-nonmenu-event) gnus-article-mode)
  (mouse-set-point event)
  (gnus-article-check-buffer)
  (let ((data (get-text-property (point) 'gnus-data)))
    (when data
      (mm-pipe-part data cmd))))