]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_parser.C
use stream-like syntax for LaTeX output
[lyx.git] / src / mathed / math_parser.C
index 66d455e4b93e55cf2008dfe45cc3aae525764baa..ba706459302a2ca2d962958d2382851a35d72ab9 100644 (file)
@@ -889,6 +889,17 @@ void Parser::parse_into(MathArray & array, unsigned flags, MathTextCodes code)
                        }
                        array.push_back(MathAtom(p));
                }
+
+/*
+               // Disabled
+               else if (t.cs() == "mbox") {
+                       array.push_back(createMathInset(t.cs()));
+                       // slurp in the argument of mbox
+       
+                       MathBoxInset * p = array.back()->asBoxInset();
+                       //lyx::assert(p);
+               }
+*/
        
                else if (t.cs().size()) {
                        latexkeys const * l = in_word_set(t.cs());