Function: TeX-find-macro-end

TeX-find-macro-end is a byte-compiled function defined in tex.el.

Signature

(TeX-find-macro-end &optional SIGNATURE)

Documentation

Return the end of a macro.

Arguments enclosed in brackets or braces are considered part of the macro. SIGNATURE, as in TeX-find-macro-boundaries, restricts how many arguments are allowed.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defun TeX-find-macro-end (&optional signature)
  "Return the end of a macro.
Arguments enclosed in brackets or braces are considered part of the
macro.  SIGNATURE, as in `TeX-find-macro-boundaries', restricts how many
arguments are allowed."
  (cdr (TeX-find-macro-boundaries nil signature)))