]> git.lyx.org Git - features.git/commitdiff
avoid spaces around math formulas in plain text output
authorJean-Marc Lasgouttes <lasgouttes@lyx.org>
Tue, 21 Sep 2004 09:58:23 +0000 (09:58 +0000)
committerJean-Marc Lasgouttes <lasgouttes@lyx.org>
Tue, 21 Sep 2004 09:58:23 +0000 (09:58 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8992 a592a061-630c-0410-9148-cb99ea01b6c8

src/mathed/math_hullinset.C

index e6ec5d308deae358911d3bfaffeb2945628e7c65..534c77fc0f347f26fdb37931af6d2ac8f9eced56 100644 (file)
@@ -1313,7 +1313,7 @@ int MathHullInset::plaintext(Buffer const &, ostream & os,
                return tpain.textheight();
        } else {
                WriteStream wi(os, false, true);
-               wi << ' ' << cell(0) << ' ';
+               wi << cell(0);
                return wi.line();
        }
 }