mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-10 20:04:46 +00:00
Fix #1249
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8886 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
7c565a8eb8
commit
d51de18996
@ -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>
|
2004-07-24 Lars Gullik Bjonnes <larsbj@gullik.net>
|
||||||
|
|
||||||
* math_support.C, math_parser.C, math_nestinset.C, math_macrotable.C:
|
* math_support.C, math_parser.C, math_nestinset.C, math_macrotable.C:
|
||||||
|
@ -1009,7 +1009,7 @@ bool MathNestInset::interpret(LCursor & cur, char c)
|
|||||||
cur.niceInsert(MathAtom(new MathBraceInset));
|
cur.niceInsert(MathAtom(new MathBraceInset));
|
||||||
} else if (c == '%') {
|
} else if (c == '%') {
|
||||||
cur.backspace();
|
cur.backspace();
|
||||||
cur.niceInsert(MathAtom(new MathSymbolInset("%")));
|
cur.niceInsert(MathAtom(new MathCommentInset));
|
||||||
} else if (c == '#') {
|
} else if (c == '#') {
|
||||||
lyxerr << "setting name to " << name + c << endl;
|
lyxerr << "setting name to " << name + c << endl;
|
||||||
BOOST_ASSERT(cur.activeMacro());
|
BOOST_ASSERT(cur.activeMacro());
|
||||||
|
Loading…
Reference in New Issue
Block a user