Function: gnus-summary-write-article-file
gnus-summary-write-article-file is an interactive and byte-compiled
function defined in gnus-sum.el.gz.
Signature
(gnus-summary-write-article-file &optional ARG)
Documentation
Write the current article to a file, deleting the previous file.
If N is a positive number, save the N next articles. If N is a negative number, save the N previous articles. If N is nil and any articles have been marked with the process mark, save those articles instead.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defun gnus-summary-write-article-file (&optional arg)
"Write the current article to a file, deleting the previous file.
If N is a positive number, save the N next articles.
If N is a negative number, save the N previous articles.
If N is nil and any articles have been marked with the process mark,
save those articles instead."
(interactive "P" gnus-summary-mode)
(require 'gnus-art)
(let ((gnus-default-article-saver 'gnus-summary-write-to-file))
(gnus-summary-save-article arg)))