mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-05 13:26:21 +00:00
fix fix
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6332 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
cd3d0bc0b2
commit
4b67d5603f
@ -206,6 +206,8 @@ ostream & operator<<(ostream & os, Token const & t)
|
||||
{
|
||||
if (t.cs().size())
|
||||
os << '\\' << t.cs();
|
||||
else if (t.cat() == catLetter)
|
||||
os << t.character();
|
||||
else
|
||||
os << '[' << t.character() << ',' << t.cat() << ']';
|
||||
return os;
|
||||
@ -1078,10 +1080,11 @@ void Parser::parse1(MathGridInset & grid, unsigned flags,
|
||||
}
|
||||
|
||||
else {
|
||||
//lyxerr << "unknow math inset begin '" << name << "'\n";
|
||||
dump();
|
||||
lyxerr << "found unknown math environment '" << name << "'\n";
|
||||
// create generic environment inset
|
||||
cell->push_back(MathAtom(new MathEnvInset(name)));
|
||||
parse2(cell->back(), FLAG_END, mode, false);
|
||||
parse(cell->back().nucleus()->cell(0), FLAG_ITEM, mode);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user