Function: mh-interactive-read-address

mh-interactive-read-address is a byte-compiled function defined in mh-comp.el.gz.

Signature

(mh-interactive-read-address PROMPT)

Documentation

Read an address.

If mh-compose-prompt-flag is non-nil, then read an address with PROMPT. Otherwise return the empty string.

Source Code

;; Defined in /usr/src/emacs/lisp/mh-e/mh-comp.el.gz
;;; Support Routines

(defun mh-interactive-read-address (prompt)
  "Read an address.
If `mh-compose-prompt-flag' is non-nil, then read an address with
PROMPT.
Otherwise return the empty string."
  (if mh-compose-prompt-flag (mh-read-address prompt) ""))