Function: mh-read-seq-default

mh-read-seq-default is an autoloaded and byte-compiled function defined in mh-seq.el.gz.

Signature

(mh-read-seq-default PROMPT NOT-EMPTY)

Documentation

Read and return sequence name with default narrowed or previous sequence.

PROMPT is the prompt to use when reading. If NOT-EMPTY is non-nil then a non-empty sequence is read.

Source Code

;; Defined in /usr/src/emacs/lisp/mh-e/mh-seq.el.gz
;;;###mh-autoload
(defun mh-read-seq-default (prompt not-empty)
  "Read and return sequence name with default narrowed or previous sequence.
PROMPT is the prompt to use when reading. If NOT-EMPTY is non-nil
then a non-empty sequence is read."
  (mh-read-seq prompt not-empty
               (or mh-last-seq-used
                   (car (mh-seq-containing-msg (mh-get-msg-num nil) nil)))))