Function: mh-add-to-sequence

mh-add-to-sequence is a byte-compiled function defined in mh-seq.el.gz.

Signature

(mh-add-to-sequence SEQ MSGS)

Documentation

The sequence SEQ is augmented with the messages in MSGS.

Source Code

;; Defined in /usr/src/emacs/lisp/mh-e/mh-seq.el.gz
(defun mh-add-to-sequence (seq msgs)
  "The sequence SEQ is augmented with the messages in MSGS."
  ;; Add to a SEQUENCE each message the list of MSGS.
  (if (and (mh-valid-seq-p seq) (not (mh-folder-name-p seq)))
      (if msgs
          (apply #'mh-exec-cmd "mark" mh-current-folder "-add"
                 "-sequence" (symbol-name seq)
                 (mh-coalesce-msg-list msgs)))))