Function: TeX-arg-ref

TeX-arg-ref is a byte-compiled function defined in latex.el.

Signature

(TeX-arg-ref OPTIONAL &optional PROMPT DEFINITION)

Documentation

Let-bind reftex-ref-macro-prompt to nil and call TeX-arg-label.

All arguments are passed to TeX-arg-label. See the documentation of TeX-arg-label for details on the arguments: OPTIONAL, PROMPT, and DEFINITION.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/latex.el
(defun TeX-arg-ref (optional &optional prompt definition)
  "Let-bind `reftex-ref-macro-prompt' to nil and call `TeX-arg-label'.

All arguments are passed to `TeX-arg-label'.  See the documentation of
`TeX-arg-label' for details on the arguments: OPTIONAL, PROMPT, and
DEFINITION."
  (let ((reftex-ref-macro-prompt nil))
    (TeX-arg-label optional prompt definition)))