Disable extractFunctions() for MathML and HTML output.

Fixes bug #8609.
(cherry picked from commit dd7d76cc6c)
This commit is contained in:
Richard Heck 2013-03-27 12:05:00 -04:00
parent 5d792ae0fd
commit 912382e2be
2 changed files with 3 additions and 1 deletions

View File

@ -957,8 +957,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);

View File

@ -123,6 +123,8 @@ What's new
- Fix problem with XHTML output of captions with listings (bug 8604).
- Fix problem with HTML output of simple formulas like "y[i]" (bug 8609).
* USER INTERFACE