Function: TeX-search-forward-unescaped
TeX-search-forward-unescaped is a byte-compiled function defined in
tex.el.
Signature
(TeX-search-forward-unescaped STRING &optional BOUND NOERROR)
Documentation
Search forward from point for unescaped STRING.
The optional argument BOUND limits the search to the respective buffer position. If NOERROR is non-nil, return nil if the search failed instead of throwing an error. A pattern is escaped, if it is preceded by an odd number of escape characters.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex.el
(defun TeX-search-forward-unescaped (string &optional bound noerror)
"Search forward from point for unescaped STRING.
The optional argument BOUND limits the search to the respective
buffer position.
If NOERROR is non-nil, return nil if the search failed instead of
throwing an error.
A pattern is escaped, if it is preceded by an odd number of escape
characters."
(TeX-search-unescaped string 'forward nil bound noerror))