Variable: texinfo-environment-regexp

texinfo-environment-regexp is a variable defined in tex-info.el.

Value

"^@\\(cartouche\\|command\\|copying\\|defcv\\|deffn\\|defivar\\|defmac\\|defmethod\\|defop\\|defopt\\|defspec\\|deftp\\|deftypefn\\|deftypefun\\|deftypevar\\|deftypevr\\|defun\\|defvar\\|defvr\\|description\\|detailmenu\\|direntry\\|display\\|documentdescription\\|enumerate\\|example\\|float\\|flushleft\\|flushright\\|format\\|ftable\\|group\\|html\\|ifclear\\|ifdocbook\\|ifhtml\\|ifinfo\\|ifnotdocbook\\|ifnothtml\\|ifnotinfo\\|ifnotplaintext\\|ifnottex\\|ifnotxml\\|ifplaintext\\|ifset\\|iftex\\|ifxml\\|ignore\\|itemize\\|lisp\\|macro\\|menu\\|multitable\\|quotation\\|smalldisplay\\|smallexample\\|smallformat\\|smalllisp\\|table\\|tex\\|titlepage\\|verbatim\\|vtable\\|end\\)\\>"

Documentation

Regexp for environment-like Texinfo list commands.

Subexpression 1 is what goes into the corresponding @end statement.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/tex-info.el
(defconst texinfo-environment-regexp
  ;; Overwrite version from `texinfo.el'.
  (concat "^@\\("
          (mapconcat #'car Texinfo-environment-list "\\|")
          "\\|end\\)\\>")
  "Regexp for environment-like Texinfo list commands.
Subexpression 1 is what goes into the corresponding `@end' statement.")