From: Georg Baum Date: Thu, 27 Apr 2006 06:56:04 +0000 (+0000) Subject: Fix bug 2546: X-Git-Tag: 1.6.10~13287 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=0fb4dc206058d33789359959058d49f47409dc32;p=features.git Fix bug 2546: * src/tex2lyx/text.C (parse_arguments): Eat space in front of required arguments git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13753 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/tex2lyx/text.C b/src/tex2lyx/text.C index 07753e9104..3e3a3d3afb 100644 --- a/src/tex2lyx/text.C +++ b/src/tex2lyx/text.C @@ -536,6 +536,7 @@ void parse_arguments(string const & command, case required: // This argument contains regular LaTeX handle_ert(os, ert + '{', context); + eat_whitespace(p, os, context, false); parse_text(p, os, FLAG_ITEM, outer, context); ert = "}"; break;