]> git.lyx.org Git - features.git/blobdiff - src/mathed/MathMacro.cpp
Don't print useless messages while parsing math macros
[features.git] / src / mathed / MathMacro.cpp
index 06a55bf7036d391756f80417f045d6e57e52d092..4a94e0318961caa66f1740be36267c382deb5744 100644 (file)
@@ -539,7 +539,8 @@ void MathMacro::updateRepresentation(Cursor * cur, MacroContext const & mc,
        }
        // get definition for list edit mode
        docstring const & display = d->macro_->display();
-       asArray(display.empty() ? d->macro_->definition() : display, d->definition_);
+       asArray(display.empty() ? d->macro_->definition() : display,
+               d->definition_, Parse::QUIET);
 }