Function: TeX-find-closing-brace

TeX-find-closing-brace is a byte-compiled function defined in tex.el.

Signature

(TeX-find-closing-brace &optional DEPTH LIMIT)

Documentation

Return the position of the closing brace in a TeX group.

The function assumes that point is inside the group, that is, after an opening brace. With optional DEPTH>=1, find that outer level. If LIMIT is non-nil, do not search further down than this position in the buffer.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defun TeX-find-closing-brace (&optional depth limit)
  "Return the position of the closing brace in a TeX group.
The function assumes that point is inside the group, that is, after
an opening brace.  With optional DEPTH>=1, find that outer level.
If LIMIT is non-nil, do not search further down than this
position in the buffer."
  (TeX-find-balanced-brace 1 depth limit))