X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ftex2lyx%2FContext.cpp;h=c565a960856242e919435128a012462918683b4f;hb=5e290e4bf9fb8e7d94912dd0126751d5f6649859;hp=f214f770ee466a39c5803c2ad278f61caa6d8724;hpb=57157d2e4d156812f574eff54ef0c5a7ed64bb18;p=lyx.git diff --git a/src/tex2lyx/Context.cpp b/src/tex2lyx/Context.cpp index f214f770ee..c565a96085 100644 --- a/src/tex2lyx/Context.cpp +++ b/src/tex2lyx/Context.cpp @@ -85,12 +85,13 @@ Context::Context(bool need_layout_, new_layout_allowed(true), merging_hyphens_allowed(true), textclass(textclass_), layout(layout_), parent_layout(parent_layout_), - font(font_), tablerotation(0) + font(font_), tablerotation(0), in_table_cell(false), cell_align('c') { if (!layout) layout = &textclass.defaultLayout(); if (!parent_layout) parent_layout = &textclass.defaultLayout(); + pass_thru_cmds.clear(); } @@ -115,7 +116,7 @@ void Context::begin_layout(ostream & os, Layout const * const & l) // FIXME: This is not enough for things like // \\Huge par1 \\par par2 // FIXME: If the document language is not english this outputs a - // superflous language change. Fortunately this is only file format + // superfluous language change. Fortunately this is only file format // bloat and does not change the TeX export of LyX. output_font_change(os, normalfont, font); }