From 3d3fdcf032ab37399e42fbe3024174345fc0f4df Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andr=C3=A9=20P=C3=B6nitz?= Date: Fri, 13 Aug 2004 10:59:12 +0000 Subject: [PATCH] fix compile problem git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8895 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/mathed/math_nestinset.C | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mathed/math_nestinset.C b/src/mathed/math_nestinset.C index 724e8420fb..6a6ceb3e70 100644 --- a/src/mathed/math_nestinset.C +++ b/src/mathed/math_nestinset.C @@ -443,7 +443,7 @@ void MathNestInset::priv_dispatch(LCursor & cur, FuncRequest & cmd) cur.autocorrect() = false; cur.clearTargetX(); cur.macroModeClose(); - else if (cur.pos() != cur.lastpos() && cur.openable(cur.nextAtom())) { + if (cur.pos() != cur.lastpos() && cur.openable(cur.nextAtom())) { cur.pushLeft(*cur.nextAtom().nucleus()); cur.inset().idxFirst(cur); } else if (cur.posRight() || idxRight(cur) -- 2.39.2