commit 5636906aee2b9fd74d0016d4e56536c749eb2a02
Author: Scott Kostyshak <[email protected]>
Date: Thu Oct 2 01:51:24 2014 -0400
No space after inline math for text export (#9282)
This extra space was the result of the fix for #6094
(at 7e624928).
diff --git a/src/Paragraph.cpp b/src/Paragraph.cpp
index eb239ed..103428a 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 << " ";
}
}
}