Function: TeX-arg-free

TeX-arg-free is a byte-compiled function defined in tex.el.

Signature

(TeX-arg-free OPTIONAL &rest ARGS)

Documentation

Parse its arguments but use no braces when they are inserted.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defun TeX-arg-free (optional &rest args)
  "Parse its arguments but use no braces when they are inserted."
  (let ((TeX-arg-opening-brace "")
        (TeX-arg-closing-brace ""))
    (if (equal (length args) 1)
        (TeX-parse-argument optional (car args))
      (TeX-parse-argument optional args))))