don't display a message unless in debug mode

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4024 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
André Pönitz 2002-04-18 14:05:33 +00:00
parent d7ed6f5c3c
commit 763fbc6f1b

View File

@ -859,7 +859,8 @@ bool Parser::parse_normal(MathAtom & matrix)
}
if (cs != "begin") {
lyxerr << "'begin' of un-simple math expected, got '" << cs << "'\n";
lyxerr[Debug::MATHED]
<< "'begin' of un-simple math expected, got '" << cs << "'\n";
return false;
}