Function: gnus-uu-decode-yenc

gnus-uu-decode-yenc is an interactive and byte-compiled function defined in gnus-uu.el.gz.

Signature

(gnus-uu-decode-yenc N DIR)

Documentation

Decode the yEnc-encoded current article.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-uu.el.gz
(defun gnus-uu-decode-yenc (n dir)
  "Decode the yEnc-encoded current article."
  (interactive
   (list current-prefix-arg
	 (file-name-as-directory
	  (read-directory-name "yEnc decode and save in dir: "
			       gnus-uu-default-dir
			       gnus-uu-default-dir)))
   gnus-article-mode gnus-summary-mode)
  (setq gnus-uu-yenc-article-name nil)
  (gnus-uu-decode-with-method #'gnus-uu-yenc-article n dir nil t))