Function: LaTeX-verbatim-regexp

LaTeX-verbatim-regexp is a byte-compiled function defined in latex.el.

Signature

(LaTeX-verbatim-regexp &optional COMMENT)

Documentation

Calculate the verbatim env regex from LaTeX-verbatim-environments(var)/LaTeX-verbatim-environments(fun).

If optional argument COMMENT is non-nil, include comment env from LaTeX-comment-env-list.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/latex.el
(defun LaTeX-verbatim-regexp (&optional comment)
  "Calculate the verbatim env regex from `LaTeX-verbatim-environments'.
If optional argument COMMENT is non-nil, include comment env from
`LaTeX-comment-env-list'."
  (regexp-opt (append (LaTeX-verbatim-environments)
                      (if comment LaTeX-comment-env-list))))