fix mathed regression (pullArg was gone)

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17634 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
André Pönitz 2007-03-29 21:58:15 +00:00
parent 8acae54241
commit 6729fb414c

View File

@ -786,8 +786,10 @@ bool LCursor::backspace()
// [|], can not delete from inside
return false;
} else {
// move to left
popLeft();
if (inMathed())
pullArg();
else
popLeft();
return true;
}
}