]> git.lyx.org Git - features.git/blobdiff - src/mathed/MathFactory.cpp
Accept \kern and \mkern for math kerning
[features.git] / src / mathed / MathFactory.cpp
index f00093746f8ca73f37b3ac80d9cc4cff473cb690..7e780d4737f250d855952052ad3f9172a0af2eda 100644 (file)
@@ -495,7 +495,7 @@ MathAtom createInsetMath(docstring const & s, Buffer * buf)
                return MathAtom(new InsetMathMakebox(buf, true));
        if (s == "makebox")
                return MathAtom(new InsetMathMakebox(buf, false));
-       if (s == "kern")
+       if (s == "kern" || s == "mkern")
                return MathAtom(new InsetMathKern);
        if (s.substr(0, 8) == "xymatrix") {
                char spacing_code = '\0';