Function: nnmail-split-history

nnmail-split-history is an interactive and byte-compiled function defined in nnmail.el.gz.

Signature

(nnmail-split-history)

Documentation

Generate an overview of where the last mail split put articles.

Probably introduced at or before Emacs version 20.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/nnmail.el.gz
(defun nnmail-split-history ()
  "Generate an overview of where the last mail split put articles."
  (interactive)
  (unless nnmail-split-history
    (error "No current split history"))
  (with-output-to-temp-buffer "*nnmail split history*"
    (with-current-buffer standard-output
      (fundamental-mode))
    (dolist (elem nnmail-split-history)
      (princ (mapconcat (lambda (ga)
			  (concat (car ga) ":" (int-to-string (cdr ga))))
			elem
			", "))
      (princ "\n"))))