From 439271626d71e6f4257edaa886dba8d6b18dd9e7 Mon Sep 17 00:00:00 2001 From: Jean-Marc Lasgouttes Date: Tue, 21 Sep 2004 09:58:23 +0000 Subject: [PATCH] avoid spaces around math formulas in plain text output git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8992 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/mathed/math_hullinset.C | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mathed/math_hullinset.C b/src/mathed/math_hullinset.C index e6ec5d308d..534c77fc0f 100644 --- a/src/mathed/math_hullinset.C +++ b/src/mathed/math_hullinset.C @@ -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(); } } -- 2.39.5