Function: ConTeXt-start-environment-regexp

ConTeXt-start-environment-regexp is a byte-compiled function defined in context.el.

Signature

(ConTeXt-start-environment-regexp LIST)

Documentation

Regular expression that matches a start of all environments mentioned in LIST.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/context.el
(defun ConTeXt-start-environment-regexp (list)
  "Regular expression that matches a start of all environments mentioned in LIST."
  (concat
   "start\\("
   (mapconcat #'identity list "\\|")
   "\\)\\b"))