Function: mh-interactive-read-string

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

Signature

(mh-interactive-read-string PROMPT)

Documentation

Read a string.

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

Source Code

;; Defined in /usr/src/emacs/lisp/mh-e/mh-comp.el.gz
(defun mh-interactive-read-string (prompt)
  "Read a string.
If `mh-compose-prompt-flag' is non-nil, then read a string with
PROMPT.
Otherwise return the empty string."
  (if mh-compose-prompt-flag (read-string prompt) ""))