From 316af4a90be3fdfef5ea211c16b841584c5536ee Mon Sep 17 00:00:00 2001 From: Richard Heck Date: Thu, 31 Dec 2009 22:31:12 +0000 Subject: [PATCH] These are in lib/symbols, so should have been caught by the first test: # split environments with optional valign argument. # the others (split and alignedat) are hardcoded. aligned split none gathered split none # from Morten H\o gholm's mathtools.sty: lgathered split none rgathered split none Right? Someone tell me if that is wrong. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32725 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/mathed/MathFactory.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mathed/MathFactory.cpp b/src/mathed/MathFactory.cpp index 8cce5f010a..eae3777065 100644 --- a/src/mathed/MathFactory.cpp +++ b/src/mathed/MathFactory.cpp @@ -413,7 +413,7 @@ MathAtom createInsetMath(docstring const & s, Buffer * buf) } if (s == "xrightarrow" || s == "xleftarrow") return MathAtom(new InsetMathXArrow(buf, s)); - if (s == "split" || s == "gathered" || s == "aligned" || s == "alignedat") + if (s == "split" || s == "alignedat") return MathAtom(new InsetMathSplit(buf, s)); if (s == "cases") return MathAtom(new InsetMathCases(buf)); -- 2.39.2