]> git.lyx.org Git - features.git/commitdiff
These are in lib/symbols, so should have been caught by the first test:
authorRichard Heck <rgheck@comcast.net>
Thu, 31 Dec 2009 22:31:12 +0000 (22:31 +0000)
committerRichard Heck <rgheck@comcast.net>
Thu, 31 Dec 2009 22:31:12 +0000 (22:31 +0000)
# 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

index 8cce5f010a2a3b4c299798fb9c0c14a103a0e0be..eae377706593f0de34e9b8efd21ddaff1c40e7d1 100644 (file)
@@ -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));