]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/MacroTable.cpp
Improve the list of equations
[lyx.git] / src / mathed / MacroTable.cpp
index 5a61a8ba581176b382a64e9bb13e6ef2d1d973b6..d23855c511f5bd3fadd26661f81fc2d0b97a9abf 100644 (file)
@@ -71,7 +71,7 @@ bool MacroData::expand(vector<MathData> const & args, MathData & to) const
        InsetMathSqrt inset(const_cast<Buffer *>(buffer_));
 
        docstring const & definition(display_.empty() ? definition_ : display_);
-       asArray(definition, inset.cell(0));
+       asArray(definition, inset.cell(0), Parse::QUIET);
        //lyxerr << "MathData::expand: args: " << args << endl;
        //LYXERR0("MathData::expand: ar: " << inset.cell(0));
        for (DocIterator it = doc_iterator_begin(buffer_, &inset); it; it.forwardChar()) {