From 51839e89a7949360122aa15f8ea1a1a34e4c5cbb Mon Sep 17 00:00:00 2001 From: Georg Baum Date: Tue, 12 Dec 2006 18:55:55 +0000 Subject: [PATCH] Unify InsetLatexAccent output git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@16254 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/tex2lyx/text.C | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tex2lyx/text.C b/src/tex2lyx/text.C index 845339b590..108c627c60 100644 --- a/src/tex2lyx/text.C +++ b/src/tex2lyx/text.C @@ -2088,7 +2088,7 @@ void parse_text(Parser & p, ostream & os, unsigned flags, bool outer, || t.cs() == "~" || t.cs() == "." || t.cs() == "=") { // we need the trim as the LyX parser chokes on such spaces context.check_layout(os); - os << "\n\\i \\" << t.cs() << "{" + os << "\\i \\" << t.cs() << "{" << trim(parse_text_snippet(p, FLAG_ITEM, outer, context), " ") << "}\n"; }