]> git.lyx.org Git - lyx.git/blobdiff - src/tex2lyx/Context.cpp
Remove 3rdparty/boost/Makefile.am
[lyx.git] / src / tex2lyx / Context.cpp
index 283846e7cf4b7271ff3156643150c51be3b4e5a1..3ef0550a2c7f10376cb1534973ee2ee9b65030fb 100644 (file)
@@ -81,7 +81,7 @@ Context::Context(bool need_layout_,
                 TeXFont const & font_)
        : need_layout(need_layout_),
          need_end_layout(false), need_end_deeper(false),
-         has_item(false), deeper_paragraph(false),
+         has_item(false), in_list_preamble(false), deeper_paragraph(false),
          new_layout_allowed(true), merging_hyphens_allowed(true),
          textclass(textclass_),
          layout(layout_), parent_layout(parent_layout_),
@@ -115,7 +115,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);
 }