From 5636906aee2b9fd74d0016d4e56536c749eb2a02 Mon Sep 17 00:00:00 2001 From: Scott Kostyshak Date: Thu, 2 Oct 2014 01:51:24 -0400 Subject: [PATCH] No space after inline math for text export (#9282) This extra space was the result of the fix for #6094 (at 7e624928). --- src/Paragraph.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Paragraph.cpp b/src/Paragraph.cpp index eb239edbe0..103428a2d5 100644 --- a/src/Paragraph.cpp +++ b/src/Paragraph.cpp @@ -3382,8 +3382,6 @@ docstring Paragraph::asString(pos_type beg, pos_type end, int options, const Out getInset(i)->plaintext(os, *runparams); } else { getInset(i)->toString(os); - if (getInset(i)->asInsetMath()) - os << " "; } } }