tex2lyx: clear latexparam after use.

This commit is contained in:
Juergen Spitzmueller 2018-03-17 12:38:53 +01:00
parent 79728dcde9
commit 7e3a41bd15

View File

@ -3307,6 +3307,7 @@ void parse_text(Parser & p, ostream & os, unsigned flags, bool outer,
context.latexparam = newlayout->latexparam(); context.latexparam = newlayout->latexparam();
// write the layout // write the layout
output_command_layout(os, p, outer, context, newlayout); output_command_layout(os, p, outer, context, newlayout);
context.latexparam.clear();
p.skip_spaces(); p.skip_spaces();
if (!preamble.titleLayoutFound()) if (!preamble.titleLayoutFound())
preamble.titleLayoutFound(newlayout->intitle); preamble.titleLayoutFound(newlayout->intitle);
@ -5506,6 +5507,7 @@ void parse_text(Parser & p, ostream & os, unsigned flags, bool outer,
output_ert(os, arg, newcontext); output_ert(os, arg, newcontext);
} else } else
parse_text_in_inset(p, os, FLAG_ITEM, false, context, newinsetlayout); parse_text_in_inset(p, os, FLAG_ITEM, false, context, newinsetlayout);
context.latexparam.clear();
if (caption) if (caption)
p.skip_spaces(); p.skip_spaces();
// Minted caption insets are not closed here because // Minted caption insets are not closed here because