Function: TeX-arg-pair

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

Signature

(TeX-arg-pair OPTIONAL FIRST SECOND)

Documentation

Insert a pair of number, prompted by FIRST and SECOND.

The numbers are surounded by parenthesizes and separated with a comma. The compatibility argument OPTIONAL is ignored.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/latex.el
(defun TeX-arg-pair (_optional first second)
  "Insert a pair of number, prompted by FIRST and SECOND.

The numbers are surounded by parenthesizes and separated with a
comma.  The compatibility argument OPTIONAL is ignored."
  (insert "(" (TeX-read-string (concat first  ": ")) ","
          (TeX-read-string (concat second ": ")) ")"))