Function: gnus-summary-save-article-folder

gnus-summary-save-article-folder is an autoloaded, interactive and byte-compiled function defined in gnus-mh.el.gz.

Signature

(gnus-summary-save-article-folder &optional ARG)

Documentation

Append the current article to an mh folder.

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-mh.el.gz
(defun gnus-summary-save-article-folder (&optional arg)
  "Append the current article to an mh folder.
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-save-in-folder))
    (gnus-summary-save-article arg)))