Function: TeX-arg-completing-read
TeX-arg-completing-read is a byte-compiled function defined in
latex.el.
Signature
(TeX-arg-completing-read OPTIONAL COLLECTION &optional PROMPT COMPLETE PREFIX LEFTBRACE RIGHTBRACE PREDICATE REQUIRE-MATCH INITIAL-INPUT HIST DEF INHERIT-INPUT-METHOD)
Documentation
Read a string in the minibuffer, with completion and insert it.
If OPTIONAL is non-nil, indicate it in the minibuffer and insert the result in brackets if not empty. The brackets used are controlled by the string values of LEFTBRACE and RIGHTBRACE.
For COLLECTION, PROMPT and COMPLETE, refer to TeX-read-completing-read.
For PREFIX, see TeX-argument-insert.
PREDICATE, REQUIRE-MATCH, INITIAL-INPUT, HIST, DEF and
INHERIT-INPUT-METHOD are passed to completing-read, which see.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/latex.el
(defun TeX-arg-completing-read (optional collection &optional prompt complete
prefix leftbrace rightbrace
predicate require-match
initial-input hist def
inherit-input-method)
"Read a string in the minibuffer, with completion and insert it.
If OPTIONAL is non-nil, indicate it in the minibuffer and insert
the result in brackets if not empty. The brackets used are
controlled by the string values of LEFTBRACE and RIGHTBRACE.
For COLLECTION, PROMPT and COMPLETE, refer to `TeX-read-completing-read'.
For PREFIX, see `TeX-argument-insert'.
PREDICATE, REQUIRE-MATCH, INITIAL-INPUT, HIST, DEF and
INHERIT-INPUT-METHOD are passed to `completing-read', which see."
(let ((TeX-arg-opening-brace (or leftbrace TeX-arg-opening-brace))
(TeX-arg-closing-brace (or rightbrace TeX-arg-closing-brace)))
(TeX-argument-insert
(TeX-read-completing-read optional collection prompt complete
predicate require-match initial-input
hist def inherit-input-method)
optional prefix)))