Function: uudecode-decode-region
uudecode-decode-region is an autoloaded and byte-compiled function
defined in uudecode.el.gz.
Signature
(uudecode-decode-region START END &optional FILE-NAME)
Documentation
Uudecode region between START and END.
If FILE-NAME is non-nil, save the result to FILE-NAME.
Source Code
;; Defined in /usr/src/emacs/lisp/mail/uudecode.el.gz
;;;###autoload
(defun uudecode-decode-region (start end &optional file-name)
"Uudecode region between START and END.
If FILE-NAME is non-nil, save the result to FILE-NAME."
(if uudecode-use-external
(uudecode-decode-region-external start end file-name)
(uudecode-decode-region-internal start end file-name)))