Function: gnus-uu-grab-view
gnus-uu-grab-view is a byte-compiled function defined in
gnus-uu.el.gz.
Signature
(gnus-uu-grab-view FILE)
Documentation
View FILE using the gnus-uu methods.
Probably introduced at or before Emacs version 19.32.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-uu.el.gz
(defun gnus-uu-grab-view (file)
"View FILE using the gnus-uu methods."
(let ((action (gnus-uu-get-action file)))
(gnus-execute-command
(if (string-search "%" action)
(format action file)
(concat action " " file))
(eq gnus-view-pseudos 'not-confirm))))