Edwin Leuven wrote: > c-n > c-m > c-l > backspace > c-z > > BOOM! > > c-l actually inserts \\ > > c-z then spits out \\\\\ etc until the crash >
It's a recursive function call, MathParser.C:
ostream & operator<<(ostream & os, Token const & t)
{
if (t.cs().size())
os << '\\' << t.cs();
--
Peter Kümmel
