Function: TeX-arg-default-argument-value
TeX-arg-default-argument-value is a byte-compiled function defined in
latex.el.
Signature
(TeX-arg-default-argument-value OPTIONAL &optional PROMPT)
Documentation
Prompt for the default value for the first argument of a LaTeX macro.
If OPTIONAL is non-nil, insert the resulting value as an optional argument, otherwise as a mandatory one. Use PROMPT as the prompt string.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/latex.el
(defun TeX-arg-default-argument-value (optional &optional prompt)
"Prompt for the default value for the first argument of a LaTeX macro.
If OPTIONAL is non-nil, insert the resulting value as an optional
argument, otherwise as a mandatory one. Use PROMPT as the prompt
string."
(TeX-argument-insert
(TeX-read-string
(TeX-argument-prompt optional prompt "Default value for first argument"))
optional))