git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8886 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
André Pönitz 2004-08-12 20:23:10 +00:00
parent 7c565a8eb8
commit d51de18996
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2004-08-12 André Pönitz <poenitz@gmx.net>
* math_nestinset.C: Fix #1249
2004-07-24 Lars Gullik Bjonnes <larsbj@gullik.net>
* math_support.C, math_parser.C, math_nestinset.C, math_macrotable.C:

View File

@ -1009,7 +1009,7 @@ bool MathNestInset::interpret(LCursor & cur, char c)
cur.niceInsert(MathAtom(new MathBraceInset));
} else if (c == '%') {
cur.backspace();
cur.niceInsert(MathAtom(new MathSymbolInset("%")));
cur.niceInsert(MathAtom(new MathCommentInset));
} else if (c == '#') {
lyxerr << "setting name to " << name + c << endl;
BOOST_ASSERT(cur.activeMacro());