Function: mh-folder-completing-read

mh-folder-completing-read is a byte-compiled function defined in mh-utils.el.gz.

Signature

(mh-folder-completing-read PROMPT DEFAULT ALLOW-ROOT-FOLDER-FLAG)

Documentation

Read folder name with PROMPT and default result DEFAULT.

If ALLOW-ROOT-FOLDER-FLAG is non-nil then "+" is allowed to be a folder name corresponding to mh-user-path.

Source Code

;; Defined in /usr/src/emacs/lisp/mh-e/mh-utils.el.gz
(defun mh-folder-completing-read (prompt default allow-root-folder-flag)
  "Read folder name with PROMPT and default result DEFAULT.
If ALLOW-ROOT-FOLDER-FLAG is non-nil then \"+\" is allowed to be
a folder name corresponding to `mh-user-path'."
  (mh-normalize-folder-name
   (let ((minibuffer-local-completion-map mh-folder-completion-map)
         (mh-allow-root-folder-flag allow-root-folder-flag))
     (completing-read prompt 'mh-folder-completion-function nil nil nil
                      'mh-folder-hist default))
   t))