Function: gnus-completing-read
gnus-completing-read is a byte-compiled function defined in
gnus-util.el.gz.
Signature
(gnus-completing-read PROMPT COLLECTION &optional REQUIRE-MATCH INITIAL-INPUT HISTORY DEF)
Documentation
Call gnus-completing-read-function.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-util.el.gz
(defun gnus-completing-read (prompt collection &optional require-match
initial-input history def)
"Call `gnus-completing-read-function'."
(funcall gnus-completing-read-function
(concat prompt (when def
(concat " (default " def ")"))
": ")
collection require-match initial-input history def))