Function: mh-unpropagated-sequences
mh-unpropagated-sequences is a byte-compiled function defined in
mh-search.el.gz.
Signature
(mh-unpropagated-sequences)
Documentation
Return a list of sequences that aren't propagated to the source folders.
It is just the sequences in the variable
mh-unpropagated-sequences(var)/mh-unpropagated-sequences(fun) in addition to the
Previous-Sequence (see mh-profile 5).
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-search.el.gz
(defun mh-unpropagated-sequences ()
"Return a list of sequences that aren't propagated to the source folders.
It is just the sequences in the variable
`mh-unpropagated-sequences' in addition to the
Previous-Sequence (see mh-profile 5)."
(if mh-previous-seq
(cons mh-previous-seq mh-unpropagated-sequences)
mh-unpropagated-sequences))