Variable: texmathp-why

texmathp-why is a variable defined in texmathp.el.

Value

nil

Documentation

After a call to texmathp this variable shows why math-mode is on or off.

The value is a cons cell (MATCH . POSITION). MATCH is a string like a car of an entry in texmathp-tex-commands, for example "equation" or "\\ensuremath" or "\\=\\[" or "$". POSITION is the buffer position of the match. If there was no match, it points to the limit used for searches, usually two paragraphs up.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/texmathp.el
(defvar texmathp-why nil
  "After a call to `texmathp' this variable shows why math-mode is on or off.
The value is a cons cell (MATCH . POSITION).
MATCH is a string like a car of an entry in `texmathp-tex-commands', for
example \"equation\" or \"\\ensuremath\" or \"\\=\\[\" or \"$\".
POSITION is the buffer position of the match.  If there was no match,
it points to the limit used for searches, usually two paragraphs up.")