From a928cdd8a2255e1bcd6549c476cf82e21fa7fdca Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andr=C3=A9=20P=C3=B6nitz?= Date: Tue, 25 Jun 2002 14:06:52 +0000 Subject: [PATCH] small bugfix git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4478 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/mathed/math_parser.C | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mathed/math_parser.C b/src/mathed/math_parser.C index 5cbab860cb..7945df4e4c 100644 --- a/src/mathed/math_parser.C +++ b/src/mathed/math_parser.C @@ -758,12 +758,12 @@ void Parser::parse_into1(MathGridInset & grid, unsigned flags, // else if (t.cs() == "(") { cell->push_back(MathAtom(new MathHullInset(LM_OT_SIMPLE))); - parse_into2(cell->back(), FLAG_SIMPLE2, true, true); + parse_into2(cell->back(), FLAG_SIMPLE2, true, false); } else if (t.cs() == "[") { cell->push_back(MathAtom(new MathHullInset(LM_OT_EQUATION))); - parse_into2(cell->back(), FLAG_EQUATION, true, true); + parse_into2(cell->back(), FLAG_EQUATION, true, false); } else if (t.cs() == "protect") -- 2.39.2