]> git.lyx.org Git - features.git/commitdiff
Remove unneeded check for cur.pos() > 0.
authorVincent van Ravesteijn <vfr@lyx.org>
Tue, 7 Jul 2009 08:12:08 +0000 (08:12 +0000)
committerVincent van Ravesteijn <vfr@lyx.org>
Tue, 7 Jul 2009 08:12:08 +0000 (08:12 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@30393 a592a061-630c-0410-9148-cb99ea01b6c8

src/mathed/InsetMathNest.cpp

index c5bf2ea2988a69a50fa813609a25663e78c9f6b8..60a003395a21cbdc4970d7902b0e4e1019f4925c 100644 (file)
@@ -1569,17 +1569,15 @@ bool InsetMathNest::interpretChar(Cursor & cur, char_type const c)
                return true;
        }
 
-       if (cur.pos() > 0) {
-               MathMacro const * macro = cur.inset().asInsetMath()->asMacro();
-               if (macro && macro->displayMode() == MathMacro::DISPLAY_UNFOLDED) {
-                       // resume macro_mode
-                       docstring const & s = macro->name();
-                       cur.leaveInset(*macro);
-                       cur.plainErase();
-                       docstring safe = grabAndEraseSelection(cur);
-                       cur.insert(MathAtom(new InsetMathUnknown("\\" + s + c, safe, false)));
-                       return true;    
-               }
+       MathMacro const * macro = cur.inset().asInsetMath()->asMacro();
+       if (macro && macro->displayMode() == MathMacro::DISPLAY_UNFOLDED) {
+               // resume macro_mode
+               docstring const & s = macro->name();
+               cur.leaveInset(*macro);
+               cur.plainErase();
+               docstring safe = grabAndEraseSelection(cur);
+               cur.insert(MathAtom(new InsetMathUnknown("\\" + s + c, safe, false)));
+               return true;    
        }
 
        selClearOrDel(cur);