]> git.lyx.org Git - features.git/commitdiff
ws
authorAndré Pönitz <poenitz@gmx.net>
Wed, 26 Feb 2003 16:45:23 +0000 (16:45 +0000)
committerAndré Pönitz <poenitz@gmx.net>
Wed, 26 Feb 2003 16:45:23 +0000 (16:45 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6286 a592a061-630c-0410-9148-cb99ea01b6c8

src/mathed/math_cursor.C

index 77208b6fa9f4ab83834170dc3af3d2ca2c8da691..cfc4f88e5688c1bb4a4b66f979b0ed0142a244ab 100644 (file)
@@ -420,12 +420,13 @@ bool MathCursor::backspace()
        }
 
        if (pos() == 0) {
-               if (par()->ncols() == 1 && par()->nrows() == 1 && depth() == 1 && size() == 0)
+               if (par()->ncols() == 1 &&
+                         par()->nrows() == 1 &&
+                         depth() == 1 &&
+                         size() == 0)
                        return false;
-               else{
-                       pullArg();
-                       return true;
-               }
+               pullArg();
+               return true;
        }
 
        if (inMacroMode()) {
@@ -438,7 +439,7 @@ bool MathCursor::backspace()
 
        --pos();
        plainErase();
-        return true;
+       return true;
 }