]> git.lyx.org Git - features.git/blobdiff - src/tex2lyx/Context.cpp
Cmake tests: Amend f6f51587
[features.git] / src / tex2lyx / Context.cpp
index cc95a1fc6d0cb3a29e4ed0fe13028c9044257a0a..f214f770ee466a39c5803c2ad278f61caa6d8724 100644 (file)
@@ -81,11 +81,11 @@ 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_),
-         font(font_)
+         font(font_), tablerotation(0)
 {
        if (!layout)
                layout = &textclass.defaultLayout();
@@ -140,9 +140,9 @@ void Context::check_layout(ostream & os)
                                begin_layout(os, layout);
                                has_item = false;
                        } else {
-                               // a standard paragraph in an
-                               // enumeration. We have to recognize
-                               // that this may require a begin_deeper.
+                               // A standard paragraph in a list.
+                               // We have to recognize that this
+                               // may require a begin_deeper.
                                if (!deeper_paragraph)
                                        begin_deeper(os);
                                begin_layout(os, &textclass.defaultLayout());