From: Tommaso Cucinotta Date: Sat, 24 Aug 2013 16:42:14 +0000 (+0100) Subject: Revert "Let non-ASCII chars within regexp insets match their occurrence within TEXT... X-Git-Tag: 2.1.0beta2~135 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=0b6edb0b2fb3773af8506a17ddcadf219dfc7e5b;p=features.git Revert "Let non-ASCII chars within regexp insets match their occurrence within TEXT, rather than MATHS (seems the most recurrently needed scenario)." This reverts commit 6a3792bdbb7e081fe15d6600b2d86bbefd20b2f0. --- diff --git a/src/mathed/InsetMathHull.cpp b/src/mathed/InsetMathHull.cpp index 0eb7241f4c..f0fc1b41e1 100644 --- a/src/mathed/InsetMathHull.cpp +++ b/src/mathed/InsetMathHull.cpp @@ -1242,8 +1242,7 @@ docstring InsetMathHull::eolString(row_type row, bool fragile, bool latex, void InsetMathHull::write(WriteStream & os) const { - ModeSpecifier specifier(os, - type_ == hullRegexp ? TEXT_MODE : MATH_MODE); + ModeSpecifier specifier(os, MATH_MODE); header_write(os); InsetMathGrid::write(os); footer_write(os);