commit 1a286c7910d8856c55a5266e73a9b6e87a8b5b98
Author: Enrico Forestieri <[email protected]>
Date: Sat May 18 11:36:07 2019 +0200
Fix bug #10499
The array environment has to be explicitly parsed in math mode.
---
src/mathed/MathParser.cpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/mathed/MathParser.cpp b/src/mathed/MathParser.cpp
index 436f022..0fe6e0f 100644
--- a/src/mathed/MathParser.cpp
+++ b/src/mathed/MathParser.cpp
@@ -1604,7 +1604,7 @@ bool Parser::parse1(InsetMathGrid & grid, unsigned flags,
docstring const halign = parse_verbatim_item();
cell->push_back(MathAtom(new
InsetMathArray(buf, name,
InsetMathGrid::guessColumns(halign), 1,
(char)valign[0], halign)));
- parse2(cell->back(), FLAG_END, mode, false);
+ parse2(cell->back(), FLAG_END,
InsetMath::MATH_MODE, false);
}
else if (name == "tabular") {