]> git.lyx.org Git - features.git/commitdiff
Only white space.
authorEnrico Forestieri <forenr@lyx.org>
Mon, 31 May 2010 23:02:04 +0000 (23:02 +0000)
committerEnrico Forestieri <forenr@lyx.org>
Mon, 31 May 2010 23:02:04 +0000 (23:02 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@34561 a592a061-630c-0410-9148-cb99ea01b6c8

src/mathed/MathData.cpp

index 98f3e04bbd96d36c0864c7fa44c3baa0e550fa37..f7eb757ec36f8dde216ef48f4bbd72940d639c9f 100644 (file)
@@ -624,7 +624,7 @@ void MathData::attachMacroParameters(Cursor * cur,
        size_t p = macroPos + 1;
        vector<MathData> detachedArgs;
        MathAtom scriptToPutAround;
-       
+
        // find cursor slice again of this MathData
        int thisSlice = -1;
        if (cur)
@@ -632,7 +632,7 @@ void MathData::attachMacroParameters(Cursor * cur,
        int thisPos = -1;
        if (thisSlice != -1)
                thisPos = (*cur)[thisSlice].pos();
-       
+
        // find arguments behind the macro
        if (!interactiveInit) {
                collectOptionalParameters(cur, macroOptionals, detachedArgs, p,
@@ -640,10 +640,10 @@ void MathData::attachMacroParameters(Cursor * cur,
        }
        collectParameters(cur, macroNumArgs, detachedArgs, p,
                scriptToPutAround, macroPos, thisPos, thisSlice, appetite);
-               
+
        // attach arguments back to macro inset
        macroInset->attachArguments(detachedArgs, macroNumArgs, macroOptionals);
-       
+
        // found tail script? E.g. \foo{a}b^x
        if (scriptToPutAround.nucleus()) {
                // put macro into a script inset
@@ -660,7 +660,7 @@ void MathData::attachMacroParameters(Cursor * cur,
                = operator[](macroPos).nucleus()->asScriptInset();
                macroInset = scriptInset->nuc()[0].nucleus()->asMacro();        
        }
-       
+
        // remove them from the MathData
        erase(begin() + macroPos + 1, begin() + p);