Function: nnmail-new-mail-p

nnmail-new-mail-p is a byte-compiled function defined in nnmail.el.gz.

Signature

(nnmail-new-mail-p GROUP)

Documentation

Say whether GROUP has new mail.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/nnmail.el.gz
(defun nnmail-new-mail-p (group)
  "Say whether GROUP has new mail."
  (let ((his nnmail-split-history)
	found)
    (while his
      (when (assoc group (pop his))
	(setq found t
	      his nil)))
    found))