Function: ebrowse-completing-read-value

ebrowse-completing-read-value is a byte-compiled function defined in ebrowse.el.gz.

Signature

(ebrowse-completing-read-value PROMPT TABLE INITIAL-INPUT)

Documentation

Read a string in the minibuffer, with completion.

Case is ignored in completions.

PROMPT is a string to prompt with; normally it ends in a colon and a space. TABLE is a completion table. If INITIAL-INPUT is non-nil, insert it in the minibuffer initially. If it is (STRING . POSITION), the initial input is STRING, but point is placed POSITION characters into the string.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/ebrowse.el.gz
(defun ebrowse-completing-read-value (prompt table initial-input)
  "Read a string in the minibuffer, with completion.
Case is ignored in completions.

PROMPT is a string to prompt with; normally it ends in a colon and a space.
TABLE is a completion table.
If INITIAL-INPUT is non-nil, insert it in the minibuffer initially.
If it is (STRING . POSITION), the initial input
is STRING, but point is placed POSITION characters into the string."
  (ebrowse-ignoring-completion-case
    (completing-read prompt table nil t initial-input)))