Function: TeX-match-buffer
TeX-match-buffer is a byte-compiled function defined in tex.el.
Signature
(TeX-match-buffer N)
Documentation
Return the substring corresponding to the N'th match.
See match-data for details.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defun TeX-match-buffer (n)
"Return the substring corresponding to the N'th match.
See `match-data' for details."
(if (match-beginning n)
(buffer-substring-no-properties (match-beginning n) (match-end n))
""))