Function: rmail-mark-message

rmail-mark-message is a byte-compiled function defined in rmail.el.gz.

Signature

(rmail-mark-message BUFFER MSGNUM-LIST ATTRIBUTE)

Documentation

Give BUFFER's message number in MSGNUM-LIST the attribute ATTRIBUTE.

This is use in the send-actions for message buffers. MSGNUM-LIST is a list of the form (MSGNUM) which is an element of rmail-msgref-vector.

Source Code

;; Defined in /usr/src/emacs/lisp/mail/rmail.el.gz
(defun rmail-mark-message (buffer msgnum-list attribute)
  "Give BUFFER's message number in MSGNUM-LIST the attribute ATTRIBUTE.
This is use in the send-actions for message buffers.
MSGNUM-LIST is a list of the form (MSGNUM)
which is an element of rmail-msgref-vector."
  (with-current-buffer buffer
    (if (car msgnum-list)
	(rmail-set-attribute attribute t (car msgnum-list)))))