Function: LaTeX--math-environment-list

LaTeX--math-environment-list is a byte-compiled function defined in latex.el.

Signature

(LaTeX--math-environment-list)

Documentation

Return list of defined math environments.

This combines the env-on entries from texmathp and any user additions.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/latex.el
(defun LaTeX--math-environment-list ()
  "Return list of defined math environments.
This combines the env-on entries from `texmathp' and any user additions."
  (texmathp-compile)
  (mapcar #'car
          (cl-remove-if-not
           (lambda (entry)
             (eq (nth 1 entry) 'env-on))
           texmathp-tex-commands1)))