Function: gnus-read-mark-p

gnus-read-mark-p is a byte-compiled function defined in gnus-sum.el.gz.

Signature

(gnus-read-mark-p MARK)

Documentation

Say whether MARK is one of the marks that mark as read.

This is all marks except unread, ticked, dormant, and expirable.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defun gnus-read-mark-p (mark)
  "Say whether MARK is one of the marks that mark as read.
This is all marks except unread, ticked, dormant, and expirable."
  (not (or (= mark gnus-unread-mark)
	   (= mark gnus-ticked-mark)
	   (= mark gnus-spam-mark)
	   (= mark gnus-dormant-mark)
	   (= mark gnus-expirable-mark))))