]> git.lyx.org Git - features.git/blobdiff - src/tex2lyx/text.C
status tag patch from Georg
[features.git] / src / tex2lyx / text.C
index 5177d30762a9bf4bc864886660723b842d1c65a2..e8a651270f23cb6993693fd786adf296c2329db7 100644 (file)
@@ -253,7 +253,7 @@ void handle_ert(ostream & os, string const & s, Context & context, bool check_la
        }
        Context newcontext(true, context.textclass);
        begin_inset(os, "ERT");
-       os << "\nstatus Collapsed\n";
+       os << "\nstatus collapsed\n";
        newcontext.check_layout(os);
        for (string::const_iterator it = s.begin(), et = s.end(); it != et; ++it) {
                if (*it == '\\')
@@ -271,7 +271,7 @@ void handle_comment(ostream & os, string const & s, Context & context)
        // TODO: Handle this better
        Context newcontext(true, context.textclass);
        begin_inset(os, "ERT");
-       os << "\nstatus Collapsed\n";
+       os << "\nstatus collapsed\n";
        newcontext.check_layout(os);
        for (string::const_iterator it = s.begin(), et = s.end(); it != et; ++it) {
                if (*it == '\\')