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