small mathed fix

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_3_X@6209 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2003-02-20 15:49:23 +00:00
parent 839666c3a8
commit c38e21b379
2 changed files with 5 additions and 7 deletions

View File

@ -747,11 +747,6 @@ void Parser::parse1(MathGridInset & grid, unsigned flags,
else
cell->back() = MathAtom(new MathScriptInset(cell->back(), up));
MathScriptInset * p = cell->back().nucleus()->asScriptInset();
// special handling of {}-bases
// is this always correct?
if (p->nuc().size() == 1 && p->nuc().back()->asNestInset() &&
p->nuc().back()->extraBraces())
p->nuc() = p->nuc().back()->asNestInset()->cell(0);
parse(p->cell(up), FLAG_ITEM, mode);
if (limits) {
p->limits(limits);

View File

@ -34,12 +34,15 @@ What's new
- new "polski" keymap, useful for entering Polish on a QWERTY keyboard
- updated french translation of menus
- updated french and polish translation of menus
- updates to Extended Manual and Customization Manual
- updates to the Extended and Customization manuals
** Bug fixes
- fix mathed bug where curly brackets in, e.g. {a^b}^c, would get lost
and cause TeX errors
- delete lyxserver pipes on exit [bug #865, Qt only]
- fix bug where "lyx -e" would refuse to work [Qt only]