Variable: texmathp-search-n-paragraphs
texmathp-search-n-paragraphs is a customizable variable defined in
texmathp.el.
Value
2
Documentation
Number of paragraphs to check before point.
Normally, you cannot have an empty line in a math environment in (La)TeX. The fastest method to test for math mode is then limiting the search backward to the nearest empty line. However, during editing it happens that such lines exist temporarily. Therefore we look a little further. This variable determines how many empty lines we go back to fix the search limit.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/texmathp.el
(defcustom texmathp-search-n-paragraphs 2
"Number of paragraphs to check before point.
Normally, you cannot have an empty line in a math environment in (La)TeX.
The fastest method to test for math mode is then limiting the search
backward to the nearest empty line.
However, during editing it happens that such lines exist temporarily.
Therefore we look a little further. This variable determines how many
empty lines we go back to fix the search limit."
:type 'number)