Function: TeX-arg-completing-read-multiple
TeX-arg-completing-read-multiple is a byte-compiled function defined
in latex.el.
Signature
(TeX-arg-completing-read-multiple OPTIONAL TABLE &optional PROMPT COMPLETE PREFIX CRM-SEP CONCAT-SEP LEFTBRACE RIGHTBRACE PREDICATE REQUIRE-MATCH INITIAL-INPUT HIST DEF INHERIT-INPUT-METHOD)
Documentation
Read multiple strings in the minibuffer, with completion and insert them.
If OPTIONAL is non-nil, indicate it in the minibuffer and insert the result in brackets if not empty.
For TABLE, PROMPT and COMPLETE, see TeX-read-completing-read-multiple.
For PREFIX, see TeX-argument-insert.
CRM-SEP is a regexp which is bound locally to crm-separator.
CONCAT-SEP is a string which will be used to concat the queried
items, defaults to ",".
The brackets used to insert the argument are controlled by the string values of LEFTBRACE and RIGHTBRACE.
PREDICATE, REQUIRE-MATCH, INITIAL-INPUT, HIST, DEF and
INHERIT-INPUT-METHOD are passed to
TeX-completing-read-multiple, which see.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/latex.el
(defun TeX-arg-completing-read-multiple (optional table &optional prompt complete
prefix crm-sep concat-sep
leftbrace rightbrace
predicate require-match
initial-input hist def
inherit-input-method)
"Read multiple strings in the minibuffer, with completion and insert them.
If OPTIONAL is non-nil, indicate it in the minibuffer and insert
the result in brackets if not empty.
For TABLE, PROMPT and COMPLETE, see `TeX-read-completing-read-multiple'.
For PREFIX, see `TeX-argument-insert'.
CRM-SEP is a regexp which is bound locally to `crm-separator'.
CONCAT-SEP is a string which will be used to concat the queried
items, defaults to \",\".
The brackets used to insert the argument are controlled by the
string values of LEFTBRACE and RIGHTBRACE.
PREDICATE, REQUIRE-MATCH, INITIAL-INPUT, HIST, DEF and
INHERIT-INPUT-METHOD are passed to
`TeX-completing-read-multiple', which see."
(let ((TeX-arg-opening-brace (or leftbrace TeX-arg-opening-brace))
(TeX-arg-closing-brace (or rightbrace TeX-arg-closing-brace))
(crm-separator (or crm-sep crm-separator))
(concat-sep (or concat-sep ",")))
(TeX-argument-insert
(mapconcat #'identity
(TeX-read-completing-read-multiple optional table prompt
complete predicate
require-match initial-input
hist def inherit-input-method)
concat-sep)
optional prefix)))