Function: mh-undefine-sequence

mh-undefine-sequence is an autoloaded and byte-compiled function defined in mh-seq.el.gz.

Signature

(mh-undefine-sequence SEQ MSGS)

Documentation

Remove from the SEQ the list of MSGS.

Source Code

;; Defined in /usr/src/emacs/lisp/mh-e/mh-seq.el.gz
;;;###mh-autoload
(defun mh-undefine-sequence (seq msgs)
  "Remove from the SEQ the list of MSGS."
  (when (and (mh-valid-seq-p seq) msgs)
    (apply #'mh-exec-cmd "mark" mh-current-folder "-delete"
           "-sequence" (symbol-name seq) (mh-coalesce-msg-list msgs))))