]> git.lyx.org Git - lyx.git/commitdiff
Disable extractFunctions() for MathML and HTML output.
authorRichard Heck <rgheck@lyx.org>
Wed, 27 Mar 2013 16:05:00 +0000 (12:05 -0400)
committerRichard Heck <rgheck@lyx.org>
Wed, 27 Mar 2013 16:05:00 +0000 (12:05 -0400)
I'm not sure there was all that much benefit to doing this, but
if so then it could be re-enabled, if we fixed extractFunctions().

src/mathed/MathExtern.cpp

index 2ac732bd7e01462287d8c45c9f926077baf8892a..6edc97b1074289a1d3eb03d197527da0ad310a4b 100644 (file)
@@ -977,8 +977,8 @@ void extractStructure(MathData & ar, ExternalMath kind)
                extractSums(ar);
        extractNumbers(ar);
        extractMatrices(ar);
-       extractFunctions(ar, kind);
        if (kind != MATHML && kind != HTML) {
+               extractFunctions(ar, kind);
                extractDets(ar);
                extractDiff(ar);
                extractExps(ar);